From 221de85f2258ddcda7e106207bdbab717943775e Mon Sep 17 00:00:00 2001 From: "Jerry (Zhenyu) Dai" Date: Mon, 1 Dec 2014 11:43:04 +0800 Subject: [PATCH 01/40] merge from storedpolicy branch --- .../Commands.Storage.Test.csproj | 4 + .../Service/MockStorageQueueManagement.cs | 11 + .../Service/MockStorageTableManagement.cs | 48 +- ...AzureStorageTableStoredAccessPolicyTest.cs | 97 + ...AzureStorageTableStoredAccessPolicyTest.cs | 114 + ...AzureStorageTableStoredAccessPolicyTest.cs | 71 + ...AzureStorageTableStoredAccessPolicyTest.cs | 82 + .../Table/StorageTableStorageTestBase.cs | 46 +- ...AzureStorageContainerStoredAccessPolicy.cs | 107 + ...AzureStorageContainerStoredAccessPolicy.cs | 112 + ...AzureStorageContainerStoredAccessPolicy.cs | 133 + ...AzureStorageContainerStoredAccessPolicy.cs | 122 + .../Commands.Storage/Commands.Storage.csproj | 13 + .../Common/AccessPolicyHelper.cs | 267 ++ .../Commands.Storage/Common/NameUtil.cs | 15 + .../Commands.Storage/Common/StorageNouns.cs | 16 + ...WindowsAzure.Commands.Storage.dll-Help.xml | 3247 +++++++++++++++-- .../Model/Contract/IStorageBlobManagement.cs | 4 +- .../Model/Contract/IStorageQueueManagement.cs | 22 +- .../Model/Contract/IStorageTableManagement.cs | 40 +- .../Model/Contract/StorageQueueManagement.cs | 25 + .../Model/Contract/StorageTableManagement.cs | 40 + .../GetAzureStorageQueueStoredAccessPolicy.cs | 104 + .../NewAzureStorageQueueStoredAccessPolicy.cs | 109 + ...moveAzureStorageQueueStoredAccessPolicy.cs | 130 + .../SetAzureStorageQueueStoredAccessPolicy.cs | 117 + .../Commands.Storage/Resources.Designer.cs | 72 + .../Storage/Commands.Storage/Resources.resx | 24 + .../GetAzureStorageTableStoredAccessPolicy.cs | 104 + .../NewAzureStorageTableStoredAccessPolicy.cs | 109 + ...moveAzureStorageTableStoredAccessPolicy.cs | 130 + .../SetAzureStorageTableStoredAccessPolicy.cs | 123 + 32 files changed, 5287 insertions(+), 371 deletions(-) create mode 100644 src/ServiceManagement/Storage/Commands.Storage.Test/Table/GetAzureStorageTableStoredAccessPolicyTest.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage.Test/Table/NewAzureStorageTableStoredAccessPolicyTest.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage.Test/Table/RemoveAzureStorageTableStoredAccessPolicyTest.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage.Test/Table/SetAzureStorageTableStoredAccessPolicyTest.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/GetAzureStorageContainerStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageContainerStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/RemoveAzureStorageContainerStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/SetAzureStorageContainerStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Common/AccessPolicyHelper.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/GetAzureStorageQueueStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/NewAzureStorageQueueStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/RemoveAzureStorageQueueStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/SetAzureStorageQueueStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/GetAzureStorageTableStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/NewAzureStorageTableStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/RemoveAzureStorageTableStoredAccessPolicy.cs create mode 100644 src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/SetAzureStorageTableStoredAccessPolicy.cs diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj b/src/ServiceManagement/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj index 86a42117de77..976551a2062e 100644 --- a/src/ServiceManagement/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj @@ -170,10 +170,14 @@ + + + + diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/Service/MockStorageQueueManagement.cs b/src/ServiceManagement/Storage/Commands.Storage.Test/Service/MockStorageQueueManagement.cs index e026f1bad807..fe223836f5f5 100644 --- a/src/ServiceManagement/Storage/Commands.Storage.Test/Service/MockStorageQueueManagement.cs +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/Service/MockStorageQueueManagement.cs @@ -14,6 +14,7 @@ using System; using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.WindowsAzure.Commands.Common.Storage; using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; using Microsoft.WindowsAzure.Storage; @@ -158,6 +159,16 @@ public QueuePermissions GetPermissions(CloudQueue queue, QueueRequestOptions opt throw new NotImplementedException(); } + public Task GetPermissionsAsync(CloudQueue queue, QueueRequestOptions requestOptions, OperationContext operationContext) + { + throw new NotImplementedException(); + } + + public void SetPermissions(CloudQueue queue, QueuePermissions queuePermissions, QueueRequestOptions requestOptions, OperationContext operationContext) + { + throw new NotImplementedException(); + } + public AzureStorageContext StorageContext { get { throw new NotImplementedException(); } diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/Service/MockStorageTableManagement.cs b/src/ServiceManagement/Storage/Commands.Storage.Test/Service/MockStorageTableManagement.cs index 5a990cdcb7aa..436e3649d01f 100644 --- a/src/ServiceManagement/Storage/Commands.Storage.Test/Service/MockStorageTableManagement.cs +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/Service/MockStorageTableManagement.cs @@ -14,6 +14,7 @@ using System; using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.WindowsAzure.Commands.Common.Storage; using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; using Microsoft.WindowsAzure.Storage; @@ -31,6 +32,11 @@ public class MockStorageTableManagement : IStorageTableManagement /// public List tableList = new List(); + /// + /// Exists permissions + /// + public TablePermissions tablePermissions = new TablePermissions(); + /// /// Table end point /// @@ -166,9 +172,49 @@ public bool DoesTableExist(CloudTable table, TableRequestOptions requestOptions, /// Table permission public TablePermissions GetTablePermissions(CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext) { - throw new NotImplementedException(); + return this.tablePermissions; + } + + /// + /// Set table permission + /// + /// Cloud table object + /// table permissions + /// Table request options + /// Operation context + /// + public void SetTablePermissions(CloudTable table, TablePermissions tablePermissions, TableRequestOptions requestOptions, OperationContext operationContext) + { + this.tablePermissions = tablePermissions; } + /// + /// Return a task that asynchronously set table permissions + /// + /// target table + /// permissions to set + /// request options + /// context + /// + public Task SetTablePermissionsAsync(CloudTable table, TablePermissions tablePermissions, TableRequestOptions requestOptions, OperationContext operationContext) + { + return Task.Factory.StartNew(() => this.SetTablePermissions(table, tablePermissions, requestOptions, operationContext)); + } + + /// + /// Return a task that asynchronously fetch table permissions + /// + /// target table + /// request options + /// context + /// + public Task GetTablePermissionsAsync(CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext) + { + return Task.Factory.StartNew(() => this.GetTablePermissions(table, + requestOptions, operationContext)); + } + + public AzureStorageContext StorageContext { get { throw new NotImplementedException(); } diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/Table/GetAzureStorageTableStoredAccessPolicyTest.cs b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/GetAzureStorageTableStoredAccessPolicyTest.cs new file mode 100644 index 000000000000..20c0b29a95b0 --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/GetAzureStorageTableStoredAccessPolicyTest.cs @@ -0,0 +1,97 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright 2012 Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Test.Table +{ + using Microsoft.VisualStudio.TestTools.UnitTesting; + using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet; + using Microsoft.WindowsAzure.Storage.Table; + using System; + using System.Collections.Generic; + + [TestClass] + public class GetAzureStorageTableStoredAccessPolicyTest : StorageTableStorageTestBase + { + public GetAzureStorageTableStoredAccessPolicyCommand command = null; + + [TestInitialize] + public void InitCommand() + { + command = new GetAzureStorageTableStoredAccessPolicyCommand(tableMock) + { + CommandRuntime = MockCmdRunTime + }; + CurrentTableCmd = command; + } + + [TestCleanup] + public void CleanCommand() + { + command = null; + } + + [TestMethod] + public void GetStoredAccessPolicyNotExistsTest() + { + AddTestStoredAccessPolicy(); + string policyName = "Policy" + Guid.NewGuid(); + string tableName = "sampleTable"; + + MockCmdRunTime.ResetPipelines(); + command.Table = tableName; + command.Policy = policyName; + RunAsyncCommand(() => command.ExecuteCmdlet()); + + Assert.AreEqual(0, MockCmdRunTime.OutputPipeline.Count); + + MockCmdRunTime.ResetPipelines(); + clearTest(); + } + + [TestMethod] + public void GetStoredAccessPolicySuccessTest() + { + AddTestStoredAccessPolicy(); + string policyName = TestPolicy1; + string tableName = "sampleTable"; + + MockCmdRunTime.ResetPipelines(); + command.Table = tableName; + command.Policy = policyName; + RunAsyncCommand(() => command.ExecuteCmdlet()); + + Assert.AreEqual(1, MockCmdRunTime.OutputPipeline.Count); + + MockCmdRunTime.ResetPipelines(); + clearTest(); + } + + [TestMethod] + public void GetAllStoredAccessPolicySuccessTest() + { + AddTestStoredAccessPolicy(); + string tableName = "sampleTable"; + + MockCmdRunTime.ResetPipelines(); + command.Table = tableName; + RunAsyncCommand(() => command.ExecuteCmdlet()); + + Assert.AreEqual(2, MockCmdRunTime.OutputPipeline.Count); + + MockCmdRunTime.ResetPipelines(); + clearTest(); + } + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/Table/NewAzureStorageTableStoredAccessPolicyTest.cs b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/NewAzureStorageTableStoredAccessPolicyTest.cs new file mode 100644 index 000000000000..3a696c53db90 --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/NewAzureStorageTableStoredAccessPolicyTest.cs @@ -0,0 +1,114 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright 2012 Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Test.Table +{ + using Microsoft.VisualStudio.TestTools.UnitTesting; + using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet; + using Microsoft.WindowsAzure.Storage.Table; + using System; + using System.Collections.Generic; + using System.Globalization; + + [TestClass] + public class NewAzureStorageTableStoredAccessPolicyTest : StorageTableStorageTestBase + { + public NewAzureStorageTableStoredAccessPolicyCommand command = null; + + [TestInitialize] + public void InitCommand() + { + command = new NewAzureStorageTableStoredAccessPolicyCommand(tableMock) + { + CommandRuntime = MockCmdRunTime + }; + } + + [TestCleanup] + public void CleanCommand() + { + command = null; + } + + [TestMethod] + public void CreateAzureTableStoredAccessPolicyWithInvalidNameTest() + { + clearTest(); + //policy name lenght longer than 64 + string policyName = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; + string tableName = "sampleTable"; + AssertThrows(() => command.CreateAzureTableStoredAccessPolicy(command.Channel, tableName, policyName, null, null, null), + String.Format(CultureInfo.CurrentCulture, Resources.InvalidAccessPolicyName, policyName)); + clearTest(); + } + + + [TestMethod] + public void CreateAzureTableStoredAccessPolicySuccessTest() + { + clearTest(); + string policyName = "Policy" + Guid.NewGuid(); + string tableName = "sampleTable"; + + string permission = "rd"; + DateTime startTime = DateTime.Today; + DateTime expiryTime = DateTime.Today.AddDays(1); + command.CreateAzureTableStoredAccessPolicy(command.Channel, tableName, policyName, startTime, expiryTime, permission); + + SharedAccessTablePermissions expectedPermissions = SharedAccessTablePermissions.None; + expectedPermissions |= SharedAccessTablePermissions.Query; + expectedPermissions |= SharedAccessTablePermissions.Delete; + SharedAccessTablePolicy resultPolicy = tableMock.tablePermissions.SharedAccessPolicies[policyName]; + Assert.IsNotNull(resultPolicy); + Assert.AreEqual(expectedPermissions, resultPolicy.Permissions); + Assert.AreEqual(startTime.ToUniversalTime(), resultPolicy.SharedAccessStartTime); + Assert.AreEqual(expiryTime.ToUniversalTime(), resultPolicy.SharedAccessExpiryTime); + clearTest(); + } + + + [TestMethod] + public void CreateStoredAccessPolicyAlreadyExistsTest() + { + clearTest(); + string policyName = "Policy" + Guid.NewGuid(); + string tableName = "sampleTable"; + + command.Table = tableName; + command.Policy = policyName; + command.CreateAzureTableStoredAccessPolicy(command.Channel, tableName, policyName, null, null, null); + AssertThrows(() => command.CreateAzureTableStoredAccessPolicy(command.Channel, tableName, policyName, null, null, null), + String.Format(CultureInfo.CurrentCulture, Resources.PolicyAlreadyExists, policyName)); + clearTest(); + } + + [TestMethod] + public void CreateStoredAccessPolicyInvalidExpirtTime() + { + clearTest(); + string policyName = "Policy" + Guid.NewGuid(); + string tableName = "sampleTable"; + + DateTime? startTime = DateTime.Today; + DateTime? expiryTime = DateTime.Today.AddDays(-1); + DateTimeOffset? expectedSharedAccessStartTime = startTime.Value.ToUniversalTime(); + DateTimeOffset? expectedSharedAccessExpiryTime = expiryTime.Value.ToUniversalTime(); + AssertThrows(() => command.CreateAzureTableStoredAccessPolicy(command.Channel, tableName, policyName, startTime, expiryTime, null), + String.Format(CultureInfo.CurrentCulture, Resources.ExpiryTimeGreatThanStartTime, expectedSharedAccessExpiryTime, expectedSharedAccessStartTime)); + clearTest(); + } + + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/Table/RemoveAzureStorageTableStoredAccessPolicyTest.cs b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/RemoveAzureStorageTableStoredAccessPolicyTest.cs new file mode 100644 index 000000000000..b711188b9f6d --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/RemoveAzureStorageTableStoredAccessPolicyTest.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright 2012 Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Test.Table +{ + using Microsoft.VisualStudio.TestTools.UnitTesting; + using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet; + using Microsoft.WindowsAzure.Storage.Table; + using System; + using System.Collections.Generic; + using System.Globalization; + using System.Linq; + + [TestClass] + public class RemoveAzureStorageTableStoredAccessPolicyTest : StorageTableStorageTestBase + { + public RemoveAzureStorageTableStoredAccessPolicyCommand command = null; + + [TestInitialize] + public void InitCommand() + { + command = new RemoveAzureStorageTableStoredAccessPolicyCommand(tableMock) + { + CommandRuntime = MockCmdRunTime + }; + } + + [TestCleanup] + public void CleanCommand() + { + command = null; + } + + [TestMethod] + public void RemoveStoredAccessPolicyNotExistsTest() + { + AddTestStoredAccessPolicy(); + string policyName = "Policy" + Guid.NewGuid(); + string tableName = "sampleTable"; + + AssertThrows(() => command.RemoveAzureTableStoredAccessPolicy(tableMock, tableName, policyName), + String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + clearTest(); + } + + [TestMethod] + public void RemoveStoredAccessPolicySuccessTest() + { + AddTestStoredAccessPolicy(); + string policyName = TestPolicy1; + string tableName = "sampleTable"; + + command.RemoveAzureTableStoredAccessPolicy(tableMock, tableName, policyName); + Assert.IsTrue(!tableMock.tablePermissions.SharedAccessPolicies.Keys.Contains(policyName)); + + clearTest(); + } + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/Table/SetAzureStorageTableStoredAccessPolicyTest.cs b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/SetAzureStorageTableStoredAccessPolicyTest.cs new file mode 100644 index 000000000000..d6204ff45003 --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/SetAzureStorageTableStoredAccessPolicyTest.cs @@ -0,0 +1,82 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright 2012 Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Test.Table +{ + using Microsoft.VisualStudio.TestTools.UnitTesting; + using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet; + using Microsoft.WindowsAzure.Storage.Table; + using System; + using System.Collections.Generic; + using System.Globalization; + + [TestClass] + public class SetAzureStorageTableStoredAccessPolicyTest : StorageTableStorageTestBase + { + public SetAzureStorageTableStoredAccessPolicyCommand command = null; + + [TestInitialize] + public void InitCommand() + { + command = new SetAzureStorageTableStoredAccessPolicyCommand(tableMock) + { + CommandRuntime = MockCmdRunTime + }; + } + + [TestCleanup] + public void CleanCommand() + { + command = null; + } + + [TestMethod] + public void SetStoredAccessPolicyNotExistsTest() + { + clearTest(); + string policyName = "Policy" + Guid.NewGuid(); + string tableName = "sampleTable"; + + command.Table = tableName; + command.Policy = policyName; + AssertThrows(() => command.SetAzureTableStoredAccessPolicy(command.Channel, tableName, policyName, null, null, null, false, false), + string.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + + clearTest(); + } + + + [TestMethod] + public void SetStoredAccessPolicySuccessTest() + { + AddTestStoredAccessPolicy(); + string policyName = TestPolicy1; + string tableName = "sampleTable"; + + string permission = "u"; + DateTime startTime = DateTime.Today; + DateTime expiryTime = DateTime.Today.AddDays(2); + command.SetAzureTableStoredAccessPolicy(command.Channel, tableName, policyName, startTime, expiryTime, permission, false, false); + + SharedAccessTablePermissions expectedPermissions = SharedAccessTablePermissions.None; + expectedPermissions |= SharedAccessTablePermissions.Update; + SharedAccessTablePolicy resultPolicy = tableMock.tablePermissions.SharedAccessPolicies[policyName]; + Assert.IsNotNull(resultPolicy); + Assert.AreEqual(expectedPermissions, resultPolicy.Permissions); + Assert.AreEqual(startTime.ToUniversalTime(), resultPolicy.SharedAccessStartTime); + Assert.AreEqual(expiryTime.ToUniversalTime(), resultPolicy.SharedAccessExpiryTime); + } + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/Table/StorageTableStorageTestBase.cs b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/StorageTableStorageTestBase.cs index beafc5780db9..0503079cf7a8 100644 --- a/src/ServiceManagement/Storage/Commands.Storage.Test/Table/StorageTableStorageTestBase.cs +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/Table/StorageTableStorageTestBase.cs @@ -11,17 +11,23 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; +using Microsoft.WindowsAzure.Commands.Storage.Table; using Microsoft.WindowsAzure.Commands.Storage.Test.Service; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Microsoft.WindowsAzure.Storage.Table; +using System; namespace Microsoft.WindowsAzure.Commands.Storage.Test.Table { public class StorageTableStorageTestBase : StorageTestBase { public MockStorageTableManagement tableMock = null; + public const string TestPolicy1 = "TestPolicy1"; + public const string TestPolicy2 = "TestPolicy2"; + + protected StorageCloudTableCmdletBase CurrentTableCmd { get; set; } [TestInitialize] public void InitMock() @@ -45,5 +51,43 @@ public void AddTestTables() tableMock.tableList.Add(new CloudTable(new Uri(testUri))); tableMock.tableList.Add(new CloudTable(new Uri(textUri))); } + + public void AddTestStoredAccessPolicy() + { + tableMock.tablePermissions.SharedAccessPolicies.Clear(); + + SharedAccessTablePolicy testPolicy1 = new SharedAccessTablePolicy(); + testPolicy1.Permissions = SharedAccessTablePermissions.None; + testPolicy1.Permissions |= SharedAccessTablePermissions.Query; + testPolicy1.SharedAccessStartTime = DateTime.Today.ToUniversalTime(); + testPolicy1.SharedAccessExpiryTime = DateTime.Today.AddDays(1).ToUniversalTime(); + tableMock.tablePermissions.SharedAccessPolicies.Add(TestPolicy1, testPolicy1); + + SharedAccessTablePolicy testPolicy2 = new SharedAccessTablePolicy(); + testPolicy1.Permissions = SharedAccessTablePermissions.None; + testPolicy1.Permissions |= SharedAccessTablePermissions.Query; + testPolicy1.SharedAccessStartTime = DateTime.Today.ToUniversalTime(); + testPolicy1.SharedAccessExpiryTime = DateTime.Today.AddDays(1).ToUniversalTime(); + tableMock.tablePermissions.SharedAccessPolicies.Add(TestPolicy2, testPolicy2); + } + + public void clearTest() + { + tableMock.tableList.Clear(); + tableMock.tablePermissions.SharedAccessPolicies.Clear(); + } + + /// + /// Run async command + /// + /// Storage command + /// Async action + protected void RunAsyncCommand(Action asyncAction) + { + MockCmdRunTime.ResetPipelines(); + CurrentTableCmd.SetUpMultiThreadEnvironment(); + asyncAction(); + CurrentTableCmd.MultiThreadEndProcessing(); + } } } \ No newline at end of file diff --git a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/GetAzureStorageContainerStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/GetAzureStorageContainerStoredAccessPolicy.cs new file mode 100644 index 000000000000..2e2f223ab9d2 --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/GetAzureStorageContainerStoredAccessPolicy.cs @@ -0,0 +1,107 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet +{ + using System; + using System.Globalization; + using System.Management.Automation; + using System.Security.Permissions; + using System.Threading.Tasks; + using Common; + using Microsoft.WindowsAzure.Storage.Blob; + using Model.Contract; + using Model.ResourceModel; + + /// + /// create a new azure container + /// + [Cmdlet(VerbsCommon.Get, StorageNouns.ContainerStoredAccessPolicy), OutputType(typeof(SharedAccessBlobPolicy))] + public class GetAzureStorageContainerStoredAccessPolicyCommand : StorageCloudBlobCmdletBase + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Container name", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Container { get; set; } + + [Parameter(Position = 1, + HelpMessage = "Policy Identifier", + ValueFromPipelineByPropertyName = true)] + public string Policy {get; set; } + + /// + /// Initializes a new instance of the GetAzureStorageContainerStoredAccessPolicyCommand class. + /// + public GetAzureStorageContainerStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the GetAzureStorageContainerStoredAccessPolicyCommand class. + /// + /// IStorageBlobManagement channel + public GetAzureStorageContainerStoredAccessPolicyCommand(IStorageBlobManagement channel) + : base(channel) + { + } + + internal async Task GetAzureContainerStoredAccessPolicyAsync(long taskId, IStorageBlobManagement localChannel, string containerName, string policyName) + { + SharedAccessBlobPolicies shareAccessPolicies = await GetPoliciesAsync(localChannel, containerName, policyName); + + if (!String.IsNullOrEmpty(policyName)) + { + if (shareAccessPolicies.Keys.Contains(policyName)) + { + OutputStream.WriteObject(taskId, AccessPolicyHelper.ConstructPolicyOutputPSObject(shareAccessPolicies, policyName)); + } + else + { + throw new ResourceNotFoundException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + } + } + else + { + foreach (string key in shareAccessPolicies.Keys) + { + OutputStream.WriteObject(taskId, AccessPolicyHelper.ConstructPolicyOutputPSObject(shareAccessPolicies, key)); + } + } + } + + internal async Task GetPoliciesAsync(IStorageBlobManagement localChannel, string containerName, string policyName) + { + CloudBlobContainer container = localChannel.GetContainerReference(containerName); + BlobContainerPermissions blobContainerPermissions = await localChannel.GetContainerPermissionsAsync(container, null, null, null, CmdletCancellationToken); + return blobContainerPermissions.SharedAccessPolicies; + } + + + /// + /// execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Container)) return; + Func taskGenerator = (taskId) => GetAzureContainerStoredAccessPolicyAsync(taskId, Channel, Container, Policy); + RunTask(taskGenerator); + } + } +} + diff --git a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageContainerStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageContainerStoredAccessPolicy.cs new file mode 100644 index 000000000000..2766e505fa0f --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/NewAzureStorageContainerStoredAccessPolicy.cs @@ -0,0 +1,112 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet +{ + using System; + using System.Globalization; + using System.Management.Automation; + using System.Security.Permissions; + using System.Threading.Tasks; + using Common; + using Microsoft.WindowsAzure.Storage.Blob; + using Model.Contract; + using Model.ResourceModel; + + /// + /// create a new azure container + /// + [Cmdlet(VerbsCommon.New, StorageNouns.ContainerStoredAccessPolicy), OutputType(typeof(String))] + public class NewAzureStorageContainerStoredAccessPolicyCommand : StorageCloudBlobCmdletBase + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Container name", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Container { get; set; } + + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Policy Identifier. Need to be unique in the Container")] + [ValidateNotNullOrEmpty] + public string Policy {get; set; } + + [Parameter(HelpMessage = "Permissions for a container. Permissions can be any not-empty subset of \"audq\".")] + public string Permission { get; set; } + + [Parameter(HelpMessage = "Start Time")] + public DateTime? StartTime { get; set; } + + [Parameter(HelpMessage = "Expiry Time")] + public DateTime? ExpiryTime { get; set; } + + /// + /// Initializes a new instance of the NewAzureStorageContainerStoredAccessPolicyCommand class. + /// + public NewAzureStorageContainerStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the NewAzureStorageContainerStoredAccessPolicyCommand class. + /// + /// IStorageBlobManagement channel + public NewAzureStorageContainerStoredAccessPolicyCommand(IStorageBlobManagement channel): + base(channel) + { + EnableMultiThread = false; + } + + internal string CreateAzureContainerStoredAccessPolicy(IStorageBlobManagement localChannel, string containerName, string policyName, DateTime? startTime, DateTime? expiryTime, string permission) + { + if (!NameUtil.IsValidStoredAccessPolicyName(policyName)) + { + throw new ArgumentException(String.Format(CultureInfo.CurrentCulture, Resources.InvalidAccessPolicyName, policyName)); + } + + //Get existing permissions + CloudBlobContainer container = localChannel.GetContainerReference(containerName); + BlobContainerPermissions blobContainerPermissions = localChannel.GetContainerPermissions(container); + + //Add new policy + if (blobContainerPermissions.SharedAccessPolicies.Keys.Contains(policyName)) + { + throw new ResourceAlreadyExistException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyAlreadyExists, policyName)); + } + + SharedAccessBlobPolicy policy = new SharedAccessBlobPolicy(); + AccessPolicyHelper.SetupAccessPolicy(policy, startTime, expiryTime, permission); + blobContainerPermissions.SharedAccessPolicies.Add(policyName, policy); + + //Set permissions back to container + localChannel.SetContainerPermissions(container, blobContainerPermissions); + return policyName; + } + + + + /// + /// execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Container) || String.IsNullOrEmpty(Policy)) return; + string resultPolicy = CreateAzureContainerStoredAccessPolicy(Channel, Container, Policy, StartTime, ExpiryTime, Permission); + WriteObject(resultPolicy); + } + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/RemoveAzureStorageContainerStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/RemoveAzureStorageContainerStoredAccessPolicy.cs new file mode 100644 index 000000000000..ea76e58352c7 --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/RemoveAzureStorageContainerStoredAccessPolicy.cs @@ -0,0 +1,133 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet +{ + using System; + using System.Globalization; + using System.Management.Automation; + using System.Security.Permissions; + using System.Threading.Tasks; + using Common; + using Microsoft.WindowsAzure.Storage.Blob; + using Model.Contract; + using Model.ResourceModel; + + /// + /// create a new azure container + /// + [Cmdlet(VerbsCommon.Remove, StorageNouns.ContainerStoredAccessPolicy, SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High), OutputType(typeof(Boolean))] + public class RemoveAzureStorageContainerStoredAccessPolicyCommand : StorageCloudBlobCmdletBase + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Container name", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Container { get; set; } + + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Policy Identifier", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Policy {get; set; } + + [Parameter(HelpMessage = "Force to remove the policy without confirm")] + public SwitchParameter Force + { + get { return force; } + set { force = value; } + } + private bool force; + + [Parameter(Mandatory = false, HelpMessage = "Return whether the specified policy is successfully removed")] + public SwitchParameter PassThru { get; set; } + + /// + /// Initializes a new instance of the RemoveAzureStorageContainerStoredAccessPolicyCommand class. + /// + public RemoveAzureStorageContainerStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the RemoveAzureStorageContainerStoredAccessPolicyCommand class. + /// + /// IStorageBlobManagement channel + public RemoveAzureStorageContainerStoredAccessPolicyCommand(IStorageBlobManagement channel) + :base(channel) + { + EnableMultiThread = false; + } + + internal virtual bool ConfirmRemove(string message) + { + return ShouldProcess(message); + } + + internal bool RemoveAzureContainerStoredAccessPolicy(IStorageBlobManagement localChannel, string containerName, string policyName) + { + bool success = false; + string result = string.Empty; + + //Get existing permissions + CloudBlobContainer container = localChannel.GetContainerReference(containerName); + BlobContainerPermissions blobContainerPermissions = localChannel.GetContainerPermissions(container); + + //remove the specified policy + if (!blobContainerPermissions.SharedAccessPolicies.Keys.Contains(policyName)) + { + throw new ResourceNotFoundException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + } + + if (force || ConfirmRemove(policyName)) + { + blobContainerPermissions.SharedAccessPolicies.Remove(policyName); + localChannel.SetContainerPermissions(container, blobContainerPermissions); + success = true; + } + + return success; + } + + /// + /// execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Container) || String.IsNullOrEmpty(Policy)) return; + bool success = RemoveAzureContainerStoredAccessPolicy(Channel, Container, Policy); + string result = string.Empty; + + if (success) + { + result = String.Format(CultureInfo.CurrentCulture, Resources.RemovePolicySuccessfully, Policy); + } + else + { + result = String.Format(CultureInfo.CurrentCulture, Resources.RemovePolicyCancelled, Policy); + } + + WriteVerbose(result); + + if (PassThru) + { + WriteObject(success); + } + } + } +} + diff --git a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/SetAzureStorageContainerStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/SetAzureStorageContainerStoredAccessPolicy.cs new file mode 100644 index 000000000000..fea286e4ca52 --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/SetAzureStorageContainerStoredAccessPolicy.cs @@ -0,0 +1,122 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet +{ + using System; + using System.Globalization; + using System.Management.Automation; + using System.Security.Permissions; + using System.Threading.Tasks; + using Common; + using Microsoft.WindowsAzure.Storage.Blob; + using Model.Contract; + using Model.ResourceModel; + + /// + /// create a new azure container + /// + [Cmdlet(VerbsCommon.Set, StorageNouns.ContainerStoredAccessPolicy), OutputType(typeof(String))] + public class SetAzureStorageContainerStoredAccessPolicyCommand : StorageCloudBlobCmdletBase + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Container name", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Container { get; set; } + + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Policy Identifier")] + [ValidateNotNullOrEmpty] + public string Policy {get; set; } + + [Parameter(HelpMessage = "Permissions for a container. Permissions can be any not-empty subset of \"audq\".")] + public string Permission { get; set; } + + [Parameter(HelpMessage = "Start Time")] + public DateTime? StartTime { get; set; } + + [Parameter(HelpMessage = "Expiry Time")] + public DateTime? ExpiryTime { get; set; } + + [Parameter(HelpMessage = "Set StartTime as null for the policy")] + public SwitchParameter NoStartTime { get; set; } + + [Parameter(HelpMessage = "Set ExpiryTime as null for the policy")] + public SwitchParameter NoExpiryTime { get; set; } + + /// + /// Initializes a new instance of the SetAzureStorageContainerStoredAccessPolicyCommand class. + /// + public SetAzureStorageContainerStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the SetAzureStorageContainerStoredAccessPolicyCommand class. + /// + /// IStorageBlobManagement channel + public SetAzureStorageContainerStoredAccessPolicyCommand(IStorageBlobManagement channel) + :base(channel) + { + EnableMultiThread = false; + } + + internal string SetAzureContainerStoredAccessPolicy(IStorageBlobManagement localChannel, string containerName, string policyName, DateTime? startTime, DateTime? expiryTime, string permission, bool noStartTime, bool noExpiryTime) + { + //Get existing permissions + CloudBlobContainer container = localChannel.GetContainerReference(containerName); + BlobContainerPermissions blobContainerPermissions = localChannel.GetContainerPermissions(container); + + //Set the policy with new value + if (!blobContainerPermissions.SharedAccessPolicies.Keys.Contains(policyName)) + { + throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + } + + SharedAccessBlobPolicy policy = blobContainerPermissions.SharedAccessPolicies[policyName]; + AccessPolicyHelper.SetupAccessPolicy(policy, startTime, expiryTime, permission, noStartTime, noExpiryTime); + blobContainerPermissions.SharedAccessPolicies[policyName] = policy; + + //Set permission back to container + localChannel.SetContainerPermissions(container, blobContainerPermissions); + WriteObject(AccessPolicyHelper.ConstructPolicyOutputPSObject(blobContainerPermissions.SharedAccessPolicies, policyName)); + return policyName; + } + + + /// + /// execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Container) || String.IsNullOrEmpty(Policy)) return; + if (NoStartTime && StartTime != null) + { + throw new ArgumentException(Resources.StartTimeParameterConflict); + } + + if (NoExpiryTime && ExpiryTime != null) + { + throw new ArgumentException(Resources.ExpiryTimeParameterConflict); + } + + SetAzureContainerStoredAccessPolicy(Channel, Container, Policy, StartTime, ExpiryTime, Permission, NoStartTime, NoExpiryTime); + } + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage/Commands.Storage.csproj b/src/ServiceManagement/Storage/Commands.Storage/Commands.Storage.csproj index 05ca1808ed76..0e76c72fbdf4 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Commands.Storage.csproj +++ b/src/ServiceManagement/Storage/Commands.Storage/Commands.Storage.csproj @@ -117,14 +117,19 @@ + + + + + @@ -187,9 +192,13 @@ + + + + True @@ -198,8 +207,12 @@ + + + + diff --git a/src/ServiceManagement/Storage/Commands.Storage/Common/AccessPolicyHelper.cs b/src/ServiceManagement/Storage/Commands.Storage/Common/AccessPolicyHelper.cs new file mode 100644 index 000000000000..d115657d405f --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Common/AccessPolicyHelper.cs @@ -0,0 +1,267 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Common +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Globalization; + using System.Management.Automation; + using System.Reflection; + using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; + using Microsoft.WindowsAzure.Commands.Utilities.Common; + using Microsoft.WindowsAzure.Storage; + using Microsoft.WindowsAzure.Storage.Blob; + using Microsoft.WindowsAzure.Storage.Queue; + using Microsoft.WindowsAzure.Storage.Queue.Protocol; + using Microsoft.WindowsAzure.Storage.Table; + + internal class AccessPolicyHelper + { + /// + /// Set the shared access policy + /// + /// SharedAccessTablePolicy, SharedAccessBlobPolicy or SharedAccessQueuePolicy + /// the policy object + /// start time of the policy + /// end time of the policy + /// the permission of the policy + internal static void SetupAccessPolicy(T policy, DateTime? startTime, DateTime? expiryTime, string permission, bool noStartTime = false, bool noExpiryTime = false) + { + if (!(typeof(T) == typeof(SharedAccessTablePolicy) || + typeof(T) == typeof(SharedAccessBlobPolicy) || + (typeof(T) == typeof(SharedAccessQueuePolicy)))) + { + throw new ArgumentException(Resources.InvalidAccessPolicyType); + } + + if (noStartTime && startTime != null) + { + throw new ArgumentException(Resources.StartTimeParameterConflict); + } + + if (noExpiryTime && expiryTime != null) + { + throw new ArgumentException(Resources.ExpiryTimeParameterConflict); + } + + DateTimeOffset? accessStartTime; + DateTimeOffset? accessExpiryTime; + SetupAccessPolicyLifeTime(startTime, expiryTime, + out accessStartTime, out accessExpiryTime); + + if (startTime != null || noStartTime) + { + policy.GetType().GetProperty("SharedAccessStartTime").SetValue(policy, accessStartTime); + } + + if (expiryTime != null || noExpiryTime) + { + policy.GetType().GetProperty("SharedAccessExpiryTime").SetValue(policy, accessExpiryTime); + } + + SetupAccessPolicyPermission(policy, permission); + } + + /// + /// Set up the shared access policy lift time + /// + /// start time of the shared access policy + /// end time of the shared access policy + /// the converted value of start time + /// the converted value of end time + internal static void SetupAccessPolicyLifeTime(DateTime? startTime, DateTime? expiryTime, + out DateTimeOffset? SharedAccessStartTime, out DateTimeOffset? SharedAccessExpiryTime) + { + SharedAccessStartTime = null; + SharedAccessExpiryTime = null; + + if (startTime != null) + { + SharedAccessStartTime = startTime.Value.ToUniversalTime(); + } + + if (expiryTime != null) + { + SharedAccessExpiryTime = expiryTime.Value.ToUniversalTime(); + } + + if (SharedAccessStartTime != null && SharedAccessExpiryTime.HasValue + && SharedAccessExpiryTime <= SharedAccessStartTime) + { + throw new ArgumentException(String.Format(CultureInfo.CurrentCulture, Resources.ExpiryTimeGreatThanStartTime, + SharedAccessExpiryTime.ToString(), SharedAccessStartTime.ToString())); + } + } + + internal static void SetupAccessPolicyPermission(T policy, string permission) + { + if (typeof(T) == typeof(SharedAccessTablePolicy)) + { + SetupAccessPolicyPermission((SharedAccessTablePolicy)(Object)policy, permission); + } + else if (typeof(T) == typeof(SharedAccessBlobPolicy)) + { + SetupAccessPolicyPermission((SharedAccessBlobPolicy)(Object)policy, permission); + } + else if ((typeof(T) == typeof(SharedAccessQueuePolicy))) + { + SetupAccessPolicyPermission((SharedAccessQueuePolicy)(Object)policy, permission); + } + else + { + throw new ArgumentException(Resources.InvalidAccessPolicyType); + } + } + + /// + /// Set up shared access policy permission for SharedAccessTablePolicy + /// + /// SharedAccessTablePolicy object + /// Permission + internal static void SetupAccessPolicyPermission(SharedAccessTablePolicy policy, string permission) + { + //skip set the permission if passed-in value is null + if (permission == null) return; + + policy.Permissions = SharedAccessTablePermissions.None; + + //set permission as none if passed-in value is empty + if (string.IsNullOrEmpty(permission)) return; + + permission = permission.ToLower(); + foreach (char op in permission) + { + switch (op) + { + case StorageNouns.Permission.Add: + policy.Permissions |= SharedAccessTablePermissions.Add; + break; + case StorageNouns.Permission.Update: + policy.Permissions |= SharedAccessTablePermissions.Update; + break; + case StorageNouns.Permission.Delete: + policy.Permissions |= SharedAccessTablePermissions.Delete; + break; + case StorageNouns.Permission.Read: + case StorageNouns.Permission.Query: + policy.Permissions |= SharedAccessTablePermissions.Query; + break; + default: + throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.InvalidAccessPermission, op)); + } + } + } + + + /// + /// Set up shared access policy permission for SharedAccessBlobPolicy + /// + /// SharedAccessBlobPolicy object + /// Permission + internal static void SetupAccessPolicyPermission(SharedAccessBlobPolicy policy, string permission) + { + //skip set the permission if passed-in value is null + if (permission == null) return; + + policy.Permissions = SharedAccessBlobPermissions.None; + + //set permission as none if passed-in value is empty + if (string.IsNullOrEmpty(permission)) return; + + permission = permission.ToLower(); + foreach (char op in permission) + { + switch (op) + { + case StorageNouns.Permission.Read: + policy.Permissions |= SharedAccessBlobPermissions.Read; + break; + case StorageNouns.Permission.Write: + policy.Permissions |= SharedAccessBlobPermissions.Write; + break; + case StorageNouns.Permission.Delete: + policy.Permissions |= SharedAccessBlobPermissions.Delete; + break; + case StorageNouns.Permission.List: + policy.Permissions |= SharedAccessBlobPermissions.List; + break; + default: + throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.InvalidAccessPermission, op)); + } + } + } + + /// + /// Set up shared access policy permission for SharedAccessQueuePolicy + /// + /// SharedAccessQueuePolicy object + /// Permisson + internal static void SetupAccessPolicyPermission(SharedAccessQueuePolicy policy, string permission) + { + //skip set the permission if passed-in value is null + if (permission == null) return; + + policy.Permissions = SharedAccessQueuePermissions.None; + + //set permission as none if passed-in value is empty + if (string.IsNullOrEmpty(permission)) return; + + permission = permission.ToLower(); + foreach (char op in permission) + { + switch (op) + { + case StorageNouns.Permission.Read: + policy.Permissions |= SharedAccessQueuePermissions.Read; + break; + case StorageNouns.Permission.Add: + policy.Permissions |= SharedAccessQueuePermissions.Add; + break; + case StorageNouns.Permission.Update: + policy.Permissions |= SharedAccessQueuePermissions.Update; + break; + case StorageNouns.Permission.Process: + policy.Permissions |= SharedAccessQueuePermissions.ProcessMessages; + break; + default: + throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.InvalidAccessPermission, op)); + } + } + } + + internal static PSObject ConstructPolicyOutputPSObject(IDictionary sharedAccessPolicies, string policyName) + { + if (!(typeof(T) == typeof(SharedAccessTablePolicy) || + typeof(T) == typeof(SharedAccessBlobPolicy) || + (typeof(T) == typeof(SharedAccessQueuePolicy)))) + { + throw new ArgumentException(Resources.InvalidAccessPolicyType); + } + + return PowerShellUtilities.ConstructPSObject( + typeof(PSObject).FullName, + "Policy", + policyName, + "Permissions", + (sharedAccessPolicies[policyName]).GetType().GetProperty("Permissions").GetValue(sharedAccessPolicies[policyName]), + "StartTime", + (sharedAccessPolicies[policyName]).GetType().GetProperty("SharedAccessStartTime").GetValue(sharedAccessPolicies[policyName]), + "ExpiryTime", + (sharedAccessPolicies[policyName]).GetType().GetProperty("SharedAccessExpiryTime").GetValue(sharedAccessPolicies[policyName])); + } + + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage/Common/NameUtil.cs b/src/ServiceManagement/Storage/Commands.Storage/Common/NameUtil.cs index c962a8010a72..1c0840c5a664 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Common/NameUtil.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Common/NameUtil.cs @@ -31,6 +31,11 @@ internal class NameUtil /// public const int WindowsMaxFileNameLength = 256; + /// + /// Max length for Stored Access Policy name + /// + public const int MaxStoredAccessPolicyNameLength = 64; + /// /// Is valid container name /// @@ -208,6 +213,16 @@ public static bool IsValidFileName(string fileName) } } + public static bool IsValidStoredAccessPolicyName(string policyName) + { + if (string.IsNullOrEmpty(policyName) || policyName.Length > MaxStoredAccessPolicyNameLength) + { + return false; + } + + return true; + } + public static string ResolveBlobName(string blobName) { return blobName.Replace('\\', '/'); diff --git a/src/ServiceManagement/Storage/Commands.Storage/Common/StorageNouns.cs b/src/ServiceManagement/Storage/Commands.Storage/Common/StorageNouns.cs index aa4d98c33182..0d145ddd4552 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Common/StorageNouns.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Common/StorageNouns.cs @@ -119,6 +119,22 @@ public static class StorageNouns /// public const string QueueSas = "AzureStorageQueueSASToken"; + /// + /// Azure storage table stored access policy + /// + public const string TableStoredAccessPolicy = "AzureStorageTableStoredAccessPolicy"; + + /// + /// Azure storage container stored access policy + /// + public const string ContainerStoredAccessPolicy = "AzureStorageContainerStoredAccessPolicy"; + + + /// + /// Azure storage container stored access policy + /// + public const string QueueStoredAccessPolicy = "AzureStorageQueueStoredAccessPolicy"; + /// /// Default service metrics version /// diff --git a/src/ServiceManagement/Storage/Commands.Storage/Microsoft.WindowsAzure.Commands.Storage.dll-Help.xml b/src/ServiceManagement/Storage/Commands.Storage/Microsoft.WindowsAzure.Commands.Storage.dll-Help.xml index c57a26264ae2..b7611ccd82ec 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Microsoft.WindowsAzure.Commands.Storage.dll-Help.xml +++ b/src/ServiceManagement/Storage/Commands.Storage/Microsoft.WindowsAzure.Commands.Storage.dll-Help.xml @@ -1556,6 +1556,171 @@ echo "Total $total containers" + + + Get-AzureStorageContainerStoredAccessPolicy + + List the specified Stored Access Policy for an azure storage container, or list all the Stored Access Policies for an azure storage container. + + + + + Get + AzureStorageContainerStoredAccessPolicy + + + + + List the specified Stored Access Policy for an azure storage container, or list all the Stored Access Policies for an azure storage container. + + + + Get-AzureStorageContainerStoredAccessPolicy + + Container + + Azure storage container name. + + String + + + Policy + + Azure Stored Access Policy. + + String + + + Context + + Azure storage context + + AzureStorageContext + + + + + + Container + + Azure storage container name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Context + + Azure storage context + + AzureStorageContext + + AzureStorageContext + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- List a stored access policy in container -------------------------- + + + + PS C:\> Get-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy + + + + + + + + + + + -------------------------- List all the stored access policies in container -------------------------- + + + + PS C:\> Get-AzureStorageContainerStoredAccessPolicy -Container test + + + + + + + + + + + + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + + + + Get-AzureStorageFile @@ -2893,85 +3058,80 @@ echo "Total $total containers" - Get-AzureStorageServiceLoggingProperty + Get-AzureStorageQueueStoredAccessPolicy - Get azure storage service logging properties. + List the specified Stored Access Policy for an azure storage queue, or list all the Stored Access Policies for an azure storage queue. Get - AzureStorageServiceLoggingProperty + AzureStorageQueueStoredAccessPolicy - Get azure storage service logging properties. + List the specified Stored Access Policy for an azure storage queue, or list all the Stored Access Policies for an azure storage queue. - Get-AzureStorageServiceLoggingProperty - - ServiceType + Get-AzureStorageQueueStoredAccessPolicy + + Queue - Azure storage service type. + Azure storage queue name. - StorageServiceType + String + + + Policy + + Azure Stored Access Policy. + + String Context - Azure storage context. + Azure storage context AzureStorageContext - - ServiceType - - Azure storage service type. - - StorageServiceType - - StorageServiceType - - - - - - Context + + Queue - Azure storage context. + Azure storage queue name. - AzureStorageContext + String - AzureStorageContext + String - - ServerTimeoutPerRequest + + Policy - Server side time out for each request. + Azure Stored Access Policy. - int32 + String - int32 + String - - ClientTimeoutPerRequest + + Context - Client side time out for each request. + Azure storage context - int32 + AzureStorageContext - int32 + AzureStorageContext @@ -3023,11 +3183,26 @@ echo "Total $total containers" - -------------------------- Get azure storage blob service logging properties. -------------------------- + -------------------------- List a stored access policy in queue -------------------------- - PS C:\> Get-AzureStorageServiceLoggingProperty -ServiceType Blob + PS C:\> Get-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy + + + + + + + + + + + -------------------------- List all the stored access policies in queue -------------------------- + + + + PS C:\> Get-AzureStorageQueueStoredAccessPolicy -Queue test @@ -3041,30 +3216,30 @@ echo "Total $total containers" http://msdn.microsoft.com/en-us/library/dn806375.aspx - + - Get-AzureStorageServiceMetricsProperty + Get-AzureStorageServiceLoggingProperty - Get azure storage service metrics properties. + Get azure storage service logging properties. Get - AzureStorageServiceMetricsProperty + AzureStorageServiceLoggingProperty - Get azure storage service metrics properties. + Get azure storage service logging properties. - Get-AzureStorageServiceMetricsProperty + Get-AzureStorageServiceLoggingProperty ServiceType @@ -3072,13 +3247,6 @@ echo "Total $total containers" StorageServiceType - - MetricsType - - Metrics type. - - ServiceMetricsType - Context @@ -3101,18 +3269,176 @@ echo "Total $total containers" - - MetricsType - - Metrics type. - - ServiceMetricsType - - ServiceMetricsType - - - - + + Context + + Azure storage context. + + AzureStorageContext + + AzureStorageContext + + + + + + ServerTimeoutPerRequest + + Server side time out for each request. + + int32 + + int32 + + + + + + ClientTimeoutPerRequest + + Client side time out for each request. + + int32 + + int32 + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Get azure storage blob service logging properties. -------------------------- + + + + PS C:\> Get-AzureStorageServiceLoggingProperty -ServiceType Blob + + + + + + + + + + + + + + + + + Get-AzureStorageServiceMetricsProperty + + Get azure storage service metrics properties. + + + + + Get + AzureStorageServiceMetricsProperty + + + + + Get azure storage service metrics properties. + + + + Get-AzureStorageServiceMetricsProperty + + ServiceType + + Azure storage service type. + + StorageServiceType + + + MetricsType + + Metrics type. + + ServiceMetricsType + + + Context + + Azure storage context. + + AzureStorageContext + + + + + + ServiceType + + Azure storage service type. + + StorageServiceType + + StorageServiceType + + + + + + MetricsType + + Metrics type. + + ServiceMetricsType + + ServiceMetricsType + + + + Context @@ -3730,113 +4056,278 @@ echo "Total $total containers" - New-AzureStorageBlobSASToken + Get-AzureStorageTableStoredAccessPolicy - Generate Shared Access Signature token for azure storage blob. + List the specified Stored Access Policy for an azure storage table, or list all the Stored Access Policies for an azure storage tabel. - New - AzureStorageBlobSASToken + Get + AzureStorageTableStoredAccessPolicy - Generate Shared Access Signature token for azure storage blob. + List the specified Stored Access Policy for an azure storage table, or list all the Stored Access Policies for an azure storage tabel. - New-AzureStorageBlobSASToken - - Container - - Azure storage container name. - - String - - - Blob + Get-AzureStorageTableStoredAccessPolicy + + Table - Azure storage blob name. + Azure storage table name. String - - Permission + + Policy - Permissions for a storage blob. + Azure Stored Access Policy. String - - StartTime - - The time at which the shared access signature becomes valid. - - Nullable`1[DateTime] - - - ExpiryTime - - The time at which the shared access signature becomes invalid. - - Nullable`1[DateTime] - - - FullUri - - Return the full blob uri with sas token. - - SwitchParameter - Context - Azure storage context. + Azure storage context AzureStorageContext - - New-AzureStorageBlobSASToken - - ICloudBlob - - ICloudBlob object - - ICloudBlob - - - Permission - - Permissions for a storage blob. - - String - - - StartTime - - The time at which the shared access signature becomes valid. - - Nullable`1[DateTime] - - - ExpiryTime - - The time at which the shared access signature becomes invalid. - - Nullable`1[DateTime] - - - FullUri - - Return the full blob uri with sas token. - - SwitchParameter - - - Context + + + + Table + + Azure storage table name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Context + + Azure storage context + + AzureStorageContext + + AzureStorageContext + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- List a stored access policy in table -------------------------- + + + + PS C:\> Get-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy + + + + + + + + + + + -------------------------- List all the stored access policies in table -------------------------- + + + + PS C:\> Get-AzureStorageTableStoredAccessPolicy -Table test + + + + + + + + + + + + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + + + + + + + New-AzureStorageBlobSASToken + + Generate Shared Access Signature token for azure storage blob. + + + + + New + AzureStorageBlobSASToken + + + + + Generate Shared Access Signature token for azure storage blob. + + + + New-AzureStorageBlobSASToken + + Container + + Azure storage container name. + + String + + + Blob + + Azure storage blob name. + + String + + + Permission + + Permissions for a storage blob. + + String + + + StartTime + + The time at which the shared access signature becomes valid. + + Nullable`1[DateTime] + + + ExpiryTime + + The time at which the shared access signature becomes invalid. + + Nullable`1[DateTime] + + + FullUri + + Return the full blob uri with sas token. + + SwitchParameter + + + Context + + Azure storage context. + + AzureStorageContext + + + + New-AzureStorageBlobSASToken + + ICloudBlob + + ICloudBlob object + + ICloudBlob + + + Permission + + Permissions for a storage blob. + + String + + + StartTime + + The time at which the shared access signature becomes valid. + + Nullable`1[DateTime] + + + ExpiryTime + + The time at which the shared access signature becomes invalid. + + Nullable`1[DateTime] + + + FullUri + + Return the full blob uri with sas token. + + SwitchParameter + + + Context Azure storage context. @@ -4661,57 +5152,264 @@ New-AzureStorageBlobSASToken -Container cname -Blob bname -Permission rwd -Start - New-AzureStorageContext + New-AzureStorageContainerStoredAccessPolicy - Create an azure storage context using azure storage credentials. + Create Stored Access Policy for azure storage container. New - AzureStorageContext + AzureStorageContainerStoredAccessPolicy - Create an azure storage context using azure storage credentials. + Create Stored Access Policy for azure storage container. - New-AzureStorageContext - - StorageAccountName + New-AzureStorageContainerStoredAccessPolicy + + Container - Azure storage account name + Azure storage container name. String - StorageAccountKey + Policy - Azure storage account key. + Azure Stored Access Policy. String - - Protocol + + Permission - Transfer Protocol (https/http). + Permissions for a storage container. String - - Endpoint + + StartTime - Azure Storage Endpoint. + The time at which the stored access policy becomes valid. - String + Nullable`1[DateTime] - - - New-AzureStorageContext - - StorageAccountName + + ExpiryTime + + The time at which the stored access policy becomes invalid. + + Nullable`1[DateTime] + + + Context + + Azure storage context + + AzureStorageContext + + + + + + Container + + Azure storage container name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Permission + + Permissions for a storage container. + + String + + String + + + + + + StartTime + + The time at which the stored access policy becomes valid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + ExpiryTime + + The time at which the stored access policy becomes invalid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + Context + + Azure storage context + + AzureStorageContext + + AzureStorageContext + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Create a stored access policy in container with full permission -------------------------- + + + + PS C:\> New-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy -Permission audq + + + + + + + + + + + + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + + + + + + + New-AzureStorageContext + + Create an azure storage context using azure storage credentials. + + + + + New + AzureStorageContext + + + + + Create an azure storage context using azure storage credentials. + + + + New-AzureStorageContext + + StorageAccountName + + Azure storage account name + + String + + + StorageAccountKey + + Azure storage account key. + + String + + + Protocol + + Transfer Protocol (https/http). + + String + + + Endpoint + + Azure Storage Endpoint. + + String + + + + New-AzureStorageContext + + StorageAccountName Azure storage account name @@ -6052,78 +6750,285 @@ $context | Get-AzureStorageBlob -Container abc - New-AzureStorageShare + New-AzureStorageQueueStoredAccessPolicy - Create a new Azure storage file share. + Create Stored Access Policy for azure storage queue. New - AzureStorageShare + AzureStorageQueueStoredAccessPolicy - Create a new Azure storage file share. + Create Stored Access Policy for azure storage queue. - New-AzureStorageShare - - Name + New-AzureStorageQueueStoredAccessPolicy + + Queue - The file share name + Azure storage queue name. String - - Context + + Policy - Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + Azure Stored Access Policy. - AzureStorageContext + String - - ServerTimeoutPerRequest + + Permission - Server side timeout value for the request. + Permissions for a storage queue. - Nullable`1[Int32] + String - ClientTimeoutPerRequest + StartTime - Client side timeout value for the request. + The time at which the stored access policy becomes valid. - Nullable`1[Int32] + Nullable`1[DateTime] - ConcurrentTaskCount - - - - Nullable`1[Int32] - - - - New-AzureStorageShare - - Name + ExpiryTime - The file share name + The time at which the stored access policy becomes invalid. - String + Nullable`1[DateTime] - + Context - Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + Azure storage context AzureStorageContext - - ServerTimeoutPerRequest + + + + + Queue + + Azure storage queue name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Permission + + Permissions for a storage queue. + + String + + String + + + + + + StartTime + + The time at which the stored access policy becomes valid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + ExpiryTime + + The time at which the stored access policy becomes invalid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + Context + + Azure storage context + + AzureStorageContext + + AzureStorageContext + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Create a stored access policy in queue with full permission -------------------------- + + + + PS C:\> New-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy -Permission arup + + + + + + + + + + + + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + + + + + + + New-AzureStorageShare + + Create a new Azure storage file share. + + + + + New + AzureStorageShare + + + + + Create a new Azure storage file share. + + + + New-AzureStorageShare + + Name + + The file share name + + String + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + + ServerTimeoutPerRequest + + Server side timeout value for the request. + + Nullable`1[Int32] + + + ClientTimeoutPerRequest + + Client side timeout value for the request. + + Nullable`1[Int32] + + + ConcurrentTaskCount + + + + Nullable`1[Int32] + + + + New-AzureStorageShare + + Name + + The file share name + + String + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + + ServerTimeoutPerRequest Server side timeout value for the request. @@ -6903,71 +7808,278 @@ $context | Get-AzureStorageBlob -Container abc - Remove-AzureStorageBlob + New-AzureStorageTableStoredAccessPolicy - Remove the specified azure storage blob. + Create Stored Access Policy for azure storage table. - Remove - AzureStorageBlob + New + AzureStorageTableStoredAccessPolicy - Remove the specified azure storage blob. + Create Stored Access Policy for azure storage table. - Remove-AzureStorageBlob - - Blob + New-AzureStorageTableStoredAccessPolicy + + Table - Blob name. + Azure storage table name. String - Container + Policy - Container name. + Azure Stored Access Policy. String - - DeleteSnapshot + + Permission - Only delete blob snapshots. + Permissions for a storage table. - SwitchParameter + String - - Force + + StartTime - Force to remove the blob and its snapshot without confirmation. + The time at which the stored access policy becomes valid. - SwitchParameter + Nullable`1[DateTime] - - PassThru + + ExpiryTime - + The time at which the stored access policy becomes invalid. - SwitchParameter + Nullable`1[DateTime] Context - Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + Azure storage context AzureStorageContext - - ServerTimeoutPerRequest - - Server side time out for each request. - + + + + + Table + + Azure storage table name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Permission + + Permissions for a storage table. + + String + + String + + + + + + StartTime + + The time at which the stored access policy becomes valid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + ExpiryTime + + The time at which the stored access policy becomes invalid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + Context + + Azure storage context + + AzureStorageContext + + AzureStorageContext + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Create a stored access policy in table with full permission -------------------------- + + + + PS C:\> New-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy -Permission raud + + + + + + + + + + + + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + + + + + + + Remove-AzureStorageBlob + + Remove the specified azure storage blob. + + + + + Remove + AzureStorageBlob + + + + + Remove the specified azure storage blob. + + + + Remove-AzureStorageBlob + + Blob + + Blob name. + + String + + + Container + + Container name. + + String + + + DeleteSnapshot + + Only delete blob snapshots. + + SwitchParameter + + + Force + + Force to remove the blob and its snapshot without confirmation. + + SwitchParameter + + + PassThru + + + + SwitchParameter + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + + ServerTimeoutPerRequest + + Server side time out for each request. + Nullable`1[Int32] @@ -7665,89 +8777,315 @@ $context | Get-AzureStorageBlob -Container abc - Remove-AzureStorageDirectory + Remove-AzureStorageContainerStoredAccessPolicy - Remove an azure storage file directory. + Remove Stored Access Policy from azure storage container. Remove - AzureStorageDirectory + AzureStorageContainerStoredAccessPolicy - Remove an azure storage file directory. + Remove Stored Access Policy from azure storage container. - Remove-AzureStorageDirectory - - ShareName + Remove-AzureStorageContainerStoredAccessPolicy + + Container - The file share name + Azure storage container name. String - - Path + + Policy - The path of the file directory to be removed + Azure Stored Access Policy. String + + Force + + Force to remove the policy without confirmation + + SwitchParameter + PassThru - + Output a bool value in order to indicate whether the specified policy is remove successfully. SwitchParameter - + Context Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. AzureStorageContext - - ServerTimeoutPerRequest - - Server side timeout value for the request - - Nullable`1[Int32] - - - ClientTimeoutPerRequest - - Client side timeout value for the request - - Nullable`1[Int32] - - - ConcurrentTaskCount - - - - Nullable`1[Int32] - WhatIf - Shows what would happen if the cmdlet runs. The cmdlet is not run. + SwitchParameter Confirm - Prompts you for confirmation before running the cmdlet. + SwitchParameter - + + + + Container + + Azure storage container name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Force + + Force to remove the policy without confirmation + + SwitchParameter + + SwitchParameter + + + + + + PassThru + + Output a bool value in order to indicate whether the specified policy is remove successfully. + + SwitchParameter + + SwitchParameter + + + + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + AzureStorageContext + + + + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Remove a stored access policy from container -------------------------- + + + + PS C:\> Remove-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy + + + + + + + + + + + + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + + + + + + + Remove-AzureStorageDirectory + + Remove an azure storage file directory. + + + + + Remove + AzureStorageDirectory + + + + + Remove an azure storage file directory. + + + + Remove-AzureStorageDirectory + + ShareName + + The file share name + + String + + + Path + + The path of the file directory to be removed + + String + + + PassThru + + + + SwitchParameter + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + + ServerTimeoutPerRequest + + Server side timeout value for the request + + Nullable`1[Int32] + + + ClientTimeoutPerRequest + + Client side timeout value for the request + + Nullable`1[Int32] + + + ConcurrentTaskCount + + + + Nullable`1[Int32] + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + SwitchParameter + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + SwitchParameter + + + Remove-AzureStorageDirectory Share @@ -8939,14 +10277,496 @@ $context | Get-AzureStorageBlob -Container abc - - ClientTimeoutPerRequest + + ClientTimeoutPerRequest + + Client side time out for each request. + + int32 + + int32 + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Remove azure storage queue by queue name -------------------------- + + + + PS C:\> Remove-AzureStorageQueue queueabc + + + + + + + + + + + -------------------------- Remove azure storage queue using GetAzureStorageQueue -------------------------- + + + + PS C:\> Get-AzureStorageQueue queue* | Remove-AzureStorageQueue + + + + + + + + + + + + + + + + + Remove-AzureStorageQueueStoredAccessPolicy + + Remove Stored Access Policy from azure storage queue. + + + + + Remove + AzureStorageQueueStoredAccessPolicy + + + + + Remove Stored Access Policy from azure storage queue. + + + + Remove-AzureStorageQueueStoredAccessPolicy + + Queue + + Azure storage queue name. + + String + + + Policy + + Azure Stored Access Policy. + + String + + + Force + + Force to remove the policy without confirmation + + SwitchParameter + + + PassThru + + Output a bool value in order to indicate whether the specified policy is remove successfully. + + SwitchParameter + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + Queue + + Azure storage queue name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Force + + Force to remove the policy without confirmation + + SwitchParameter + + SwitchParameter + + + + + + PassThru + + Output a bool value in order to indicate whether the specified policy is remove successfully. + + SwitchParameter + + SwitchParameter + + + + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + AzureStorageContext + + + + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Remove a stored access policy from queue -------------------------- + + + + PS C:\> Remove-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy + + + + + + + + + + + + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + + + + + + + Set-AzureStorageQueueStoredAccessPolicy + + Set Stored Access Policy for azure storage queue. + + + + + Set + AzureStorageQueueStoredAccessPolicy + + + + + Set Stored Access Policy for azure storage queue. + + + + Set-AzureStorageQueueStoredAccessPolicy + + Queue + + Azure storage queue name. + + String + + + Policy + + Azure Stored Access Policy. + + String + + + Permission + + Permissions for a storage queue. + + String + + + StartTime + + The time at which the stored access policy becomes valid. + + Nullable`1[DateTime] + + + ExpiryTime + + The time at which the stored access policy becomes invalid. + + Nullable`1[DateTime] + + + NoStartTime + + Set the StartTime to be Null. + + SwitchParameter + + + NoExpiryTime + + Set the ExpiryTime to be Null. + + SwitchParameter + + + Context + + Azure storage context + + AzureStorageContext + + + + + + Queue + + Azure storage queue name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Permission + + Permissions for a storage queue. + + String + + String + + + + + + StartTime + + The time at which the stored access policy becomes valid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + ExpiryTime + + The time at which the stored access policy becomes invalid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + NoStartTime + + Set the StartTime to be Null. + + SwitchParameter + + SwitchParameter + + + + + + NoExpiryTime + + Set the ExpiryTime to be Null. + + SwitchParameter + + SwitchParameter + + + + + + Context - Client side time out for each request. + Azure storage context - int32 + AzureStorageContext - int32 + AzureStorageContext @@ -8998,26 +10818,11 @@ $context | Get-AzureStorageBlob -Container abc - -------------------------- Remove azure storage queue by queue name -------------------------- - - - - PS C:\> Remove-AzureStorageQueue queueabc - - - - - - - - - - - -------------------------- Remove azure storage queue using GetAzureStorageQueue -------------------------- + -------------------------- Set a stored access policy in queue with full permission -------------------------- - PS C:\> Get-AzureStorageQueue queue* | Remove-AzureStorageQueue + PS C:\> Set-AzureStorageQueueStoredAccessPolicy -Queue test -Policy testPolicy -Permission arup @@ -9029,6 +10834,10 @@ $context | Get-AzureStorageBlob -Container abc + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + @@ -9605,19 +11414,256 @@ $context | Get-AzureStorageBlob -Container abc int32 - int32 + int32 + + + + + + ClientTimeoutPerRequest + + Client side time out for each request. + + int32 + + int32 + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Remove azure storage table by table name -------------------------- + + + + PS C:\> Remove-AzureStorageTable tableabc + + + + + + + + + + + -------------------------- Remove azure storage tables using GetAzureStorageTable -------------------------- + + + + PS C:\> Get-AzureStorageTable table* | Remove-AzureStorageTable + + + + + + + + + + + + + + + + + Remove-AzureStorageTableStoredAccessPolicy + + Remove Stored Access Policy from azure storage table. + + + + + Remove + AzureStorageTableStoredAccessPolicy + + + + + Remove Stored Access Policy from azure storage table. + + + + Remove-AzureStorageTableStoredAccessPolicy + + Table + + Azure storage table name. + + String + + + Policy + + Azure Stored Access Policy. + + String + + + Force + + Force to remove the policy without confirmation + + SwitchParameter + + + PassThru + + Output a bool value in order to indicate whether the specified policy is remove successfully. + + SwitchParameter + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + Table + + Azure storage table name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Force + + Force to remove the policy without confirmation + + SwitchParameter + + SwitchParameter + + + + + + PassThru + + Output a bool value in order to indicate whether the specified policy is remove successfully. + + SwitchParameter + + SwitchParameter + + + + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + AzureStorageContext + + + + + + WhatIf + + + + SwitchParameter + + SwitchParameter - ClientTimeoutPerRequest + Confirm - Client side time out for each request. + - int32 + SwitchParameter - int32 + SwitchParameter @@ -9669,26 +11715,11 @@ $context | Get-AzureStorageBlob -Container abc - -------------------------- Remove azure storage table by table name -------------------------- - - - - PS C:\> Remove-AzureStorageTable tableabc - - - - - - - - - - - -------------------------- Remove azure storage tables using GetAzureStorageTable -------------------------- + -------------------------- Remove a stored access policy from table -------------------------- - PS C:\> Get-AzureStorageTable table* | Remove-AzureStorageTable + PS C:\> Remove-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy @@ -9700,6 +11731,10 @@ $context | Get-AzureStorageBlob -Container abc + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + @@ -10354,55 +12389,327 @@ Set-AzureStorageBlobContent -File filename -Container containername -Metadata $m SwitchParameter - SwitchParameter + SwitchParameter + + + + + + Context + + Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + + AzureStorageContext + + AzureStorageContext + + + + + + ServerTimeoutPerRequest + + Server side time out for each request. + + Nullable`1[Int32] + + Nullable`1[Int32] + + + + + + ClientTimeoutPerRequest + + Client side time out for each request. + + Nullable`1[Int32] + + Nullable`1[Int32] + + + + + + ConcurrentTaskCount + + + + Nullable`1[Int32] + + Nullable`1[Int32] + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Set azure storage container acl by name. -------------------------- + + + + PS C:\> Set-AzureStorageContainerAcl -Container container1 -Permission off -PassThru + + + + + + + + + + + -------------------------- Set azure storage container acl using pipeline by GetAzureStorageContainer -------------------------- + + + + PS C:\> Get-AzureStorageContainer container* | Set-AzureStorageContainerAcl -Permission blob -PassThru + + + + + + + + + + + + + Get-AzureStorageContainerAcl + + + + Get-AzureStorageContainer + + + + New-AzureStorageContainer + + + + Remove-AzureStorageContainer + + + + + + + + Set-AzureStorageContainerStoredAccessPolicy + + Set Stored Access Policy for azure storage container. + + + + + Set + AzureStorageContainerStoredAccessPolicy + + + + + Set Stored Access Policy for azure storage container. + + + + Set-AzureStorageContainerStoredAccessPolicy + + Container + + Azure storage container name. + + String + + + Policy + + Azure Stored Access Policy. + + String + + + Permission + + Permissions for a storage container. + + String + + + StartTime + + The time at which the stored access policy becomes valid. + + Nullable`1[DateTime] + + + ExpiryTime + + The time at which the stored access policy becomes invalid. + + Nullable`1[DateTime] + + + NoStartTime + + Set the StartTime to be Null. + + SwitchParameter + + + NoExpiryTime + + Set the ExpiryTime to be Null. + + SwitchParameter + + + Context + + Azure storage context + + AzureStorageContext + + + + + + Container + + Azure storage container name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String - - Context + + Permission - Azure Storage Context. You can create it by New-AzureStorageContext cmdlet. + Permissions for a storage container. - AzureStorageContext + String - AzureStorageContext + String - ServerTimeoutPerRequest + StartTime - Server side time out for each request. + The time at which the stored access policy becomes valid. - Nullable`1[Int32] + Nullable`1[DateTime] - Nullable`1[Int32] + Nullable`1[DateTime] - ClientTimeoutPerRequest + ExpiryTime - Client side time out for each request. + The time at which the stored access policy becomes invalid. - Nullable`1[Int32] + Nullable`1[DateTime] - Nullable`1[Int32] + Nullable`1[DateTime] - - ConcurrentTaskCount + + NoStartTime + + Set the StartTime to be Null. + + SwitchParameter + + SwitchParameter + + + + + + NoExpiryTime + + Set the ExpiryTime to be Null. + + SwitchParameter + + SwitchParameter + + + + + + Context - + Azure storage context - Nullable`1[Int32] + AzureStorageContext - Nullable`1[Int32] + AzureStorageContext @@ -10454,26 +12761,11 @@ Set-AzureStorageBlobContent -File filename -Container containername -Metadata $m - -------------------------- Set azure storage container acl by name. -------------------------- - - - - PS C:\> Set-AzureStorageContainerAcl -Container container1 -Permission off -PassThru - - - - - - - - - - - -------------------------- Set azure storage container acl using pipeline by GetAzureStorageContainer -------------------------- + -------------------------- Set a stored access policy in container with full permission -------------------------- - PS C:\> Get-AzureStorageContainer container* | Set-AzureStorageContainerAcl -Permission blob -PassThru + PS C:\> Set-AzureStorageContainerStoredAccessPolicy -Container test -Policy testPolicy -Permission audq @@ -10486,19 +12778,7 @@ Set-AzureStorageBlobContent -File filename -Container containername -Metadata $m - Get-AzureStorageContainerAcl - - - - Get-AzureStorageContainer - - - - New-AzureStorageContainer - - - - Remove-AzureStorageContainer + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx @@ -11625,6 +13905,251 @@ Set-AzureStorageBlobContent -File filename -Container containername -Metadata $m + + + Set-AzureStorageTableStoredAccessPolicy + + Set Stored Access Policy for azure storage table. + + + + + Set + AzureStorageTableStoredAccessPolicy + + + + + Set Stored Access Policy for azure storage table. + + + + Set-AzureStorageTableStoredAccessPolicy + + Table + + Azure storage table name. + + String + + + Policy + + Azure Stored Access Policy. + + String + + + Permission + + Permissions for a storage table. + + String + + + StartTime + + The time at which the stored access policy becomes valid. + + Nullable`1[DateTime] + + + ExpiryTime + + The time at which the stored access policy becomes invalid. + + Nullable`1[DateTime] + + + NoStartTime + + Set the StartTime to be Null. + + SwitchParameter + + + NoExpiryTime + + Set the ExpiryTime to be Null. + + SwitchParameter + + + Context + + Azure storage context + + AzureStorageContext + + + + + + Table + + Azure storage table name. + + String + + String + + + + + + Policy + + Azure Stored Access Policy. + + String + + String + + + + + + Permission + + Permissions for a storage table. + + String + + String + + + + + + StartTime + + The time at which the stored access policy becomes valid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + ExpiryTime + + The time at which the stored access policy becomes invalid. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + NoStartTime + + Set the StartTime to be Null. + + SwitchParameter + + SwitchParameter + + + + + + NoExpiryTime + + Set the ExpiryTime to be Null. + + SwitchParameter + + SwitchParameter + + + + + + Context + + Azure storage context + + AzureStorageContext + + AzureStorageContext + + + + + + PipelineVariable + + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Set a stored access policy in table with full permission -------------------------- + + + + PS C:\> Set-AzureStorageTableStoredAccessPolicy -Table test -Policy testPolicy -Permission raud + + + + + + + + + + + + + http://msdn.microsoft.com/en-us/library/azure/dn140257.aspx + + + + + Start-AzureStorageBlobCopy diff --git a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageBlobManagement.cs b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageBlobManagement.cs index 8ff148bd51e9..fc6faea183a9 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageBlobManagement.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageBlobManagement.cs @@ -56,7 +56,7 @@ public interface IStorageBlobManagement : IStorageManagement /// Blob request option /// Operation context /// The container's permission - BlobContainerPermissions GetContainerPermissions(CloudBlobContainer container, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); + BlobContainerPermissions GetContainerPermissions(CloudBlobContainer container, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); /// /// Set container permissions @@ -66,7 +66,7 @@ public interface IStorageBlobManagement : IStorageManagement /// Access condition /// Blob request option /// Operation context - void SetContainerPermissions(CloudBlobContainer container, BlobContainerPermissions permissions, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); + void SetContainerPermissions(CloudBlobContainer container, BlobContainerPermissions permissions, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); /// /// Get an CloudBlobContainer instance in local diff --git a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageQueueManagement.cs b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageQueueManagement.cs index 09360d382725..230edc52520b 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageQueueManagement.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageQueueManagement.cs @@ -14,6 +14,7 @@ using System; using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Queue; using Microsoft.WindowsAzure.Storage.Queue.Protocol; @@ -83,6 +84,25 @@ IEnumerable ListQueues(string prefix, QueueListingDetails queueList /// Queue request options /// Operation context /// QueuePermissions object - QueuePermissions GetPermissions(CloudQueue queue, QueueRequestOptions options, OperationContext operationContext); + QueuePermissions GetPermissions(CloudQueue queue, QueueRequestOptions options = null, OperationContext operationContext = null); + + + /// + /// Get queue permission async + /// + /// + /// + /// + /// + Task GetPermissionsAsync(CloudQueue queue, QueueRequestOptions requestOptions = null, OperationContext operationContext = null); + + /// + /// set queue permission + /// + /// + /// + /// + /// + void SetPermissions(CloudQueue queue, QueuePermissions queuePermissions, QueueRequestOptions requestOptions = null, OperationContext operationContext = null); } } diff --git a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageTableManagement.cs b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageTableManagement.cs index d440c53efe7e..03b1a2592fe7 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageTableManagement.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/IStorageTableManagement.cs @@ -13,6 +13,7 @@ // --------------------------------------------------------------------------------- using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Table; @@ -30,7 +31,7 @@ public interface IStorageTableManagement : IStorageManagement /// Table request options /// Operation context /// An enumerable collection of tables that begin with the specified prefix - IEnumerable ListTables(string prefix, TableRequestOptions requestOptions, OperationContext operationContext); + IEnumerable ListTables(string prefix, TableRequestOptions requestOptions = null, OperationContext operationContext = null); /// /// Get a table reference @@ -46,7 +47,7 @@ public interface IStorageTableManagement : IStorageManagement /// Table request options /// Operation context /// True if table exists; otherwise, false. - bool DoesTableExist(CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext); + bool DoesTableExist(CloudTable table, TableRequestOptions requestOptions = null, OperationContext operationContext = null); /// /// Cloud a azure storage table if not exists. @@ -55,7 +56,7 @@ public interface IStorageTableManagement : IStorageManagement /// Table request options /// Operation context /// True if table was created; otherwise, false. - bool CreateTableIfNotExists(CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext); + bool CreateTableIfNotExists(CloudTable table, TableRequestOptions requestOptions = null, OperationContext operationContext = null); /// /// Delete the specified azure storage table @@ -63,7 +64,7 @@ public interface IStorageTableManagement : IStorageManagement /// Cloud table object /// Table request options /// Operation context - void Delete(CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext); + void Delete(CloudTable table, TableRequestOptions requestOptions = null, OperationContext operationContext = null); /// /// Get table permission @@ -71,6 +72,35 @@ public interface IStorageTableManagement : IStorageManagement /// Cloud table object /// Table request options /// Operation context - TablePermissions GetTablePermissions(CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext); + TablePermissions GetTablePermissions(CloudTable table, TableRequestOptions requestOptions = null, OperationContext operationContext = null); + + /// + /// Return a task that asynchronously fetch table permissions + /// + /// target table + /// request options + /// context + /// + Task GetTablePermissionsAsync(CloudTable table, TableRequestOptions requestOptions = null, OperationContext operationContext = null); + + /// + /// Set table permission + /// + /// Cloud table object + /// table permissions + /// Table request options + /// Operation context + /// + void SetTablePermissions(CloudTable table, TablePermissions tablePermissions, TableRequestOptions requestOptions = null, OperationContext operationContext = null); + + /// + /// Return a task that asynchronously set table permissions + /// + /// target table + /// permissions to set + /// request options + /// context + /// + Task SetTablePermissionsAsync(CloudTable table, TablePermissions tablePermissions, TableRequestOptions requestOptions = null, OperationContext operationContext = null); } } \ No newline at end of file diff --git a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/StorageQueueManagement.cs b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/StorageQueueManagement.cs index 4aa018ac5c5c..9b5e0e1a03f0 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/StorageQueueManagement.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/StorageQueueManagement.cs @@ -13,6 +13,7 @@ // --------------------------------------------------------------------------------- using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.WindowsAzure.Commands.Common.Storage; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Queue; @@ -156,5 +157,29 @@ public QueuePermissions GetPermissions(CloudQueue queue, QueueRequestOptions opt { return queue.GetPermissions(options, operationContext); } + + /// + /// Get queue permission async + /// + /// + /// + /// + /// + public Task GetPermissionsAsync(CloudQueue queue, QueueRequestOptions requestOptions, OperationContext operationContext) + { + return queue.GetPermissionsAsync(requestOptions, operationContext); + } + + /// + /// set queue permission + /// + /// + /// + /// + /// + public void SetPermissions(CloudQueue queue, QueuePermissions queuePermissions, QueueRequestOptions requestOptions, OperationContext operationContext) + { + queue.SetPermissions(queuePermissions, requestOptions, operationContext); + } } } diff --git a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/StorageTableManagement.cs b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/StorageTableManagement.cs index 3098e7ff1dac..c9acc63662fc 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/StorageTableManagement.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Model/Contract/StorageTableManagement.cs @@ -13,6 +13,7 @@ // --------------------------------------------------------------------------------- using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.WindowsAzure.Commands.Common.Storage; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Table; @@ -122,5 +123,44 @@ public TablePermissions GetTablePermissions(CloudTable table, TableRequestOption { return table.GetPermissions(requestOptions, operationContext); } + + /// + /// Return a task that asynchronously fetch table permissions + /// + /// target table + /// request options + /// context + /// + public Task GetTablePermissionsAsync(CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext) + { + return table.GetPermissionsAsync(requestOptions, operationContext); + } + + /// + /// Set table permission + /// + /// Cloud table object + /// table permissions + /// Table request options + /// Operation context + /// + public void SetTablePermissions(CloudTable table, TablePermissions tablePermissions, TableRequestOptions requestOptions, OperationContext operationContext) + { + table.SetPermissions(tablePermissions, requestOptions, operationContext); + } + + + /// + /// Return a task that asynchronously set table permissions + /// + /// target table + /// permissions to set + /// request options + /// context + /// + public Task SetTablePermissionsAsync(CloudTable table, TablePermissions tablePermissions, TableRequestOptions requestOptions, OperationContext operationContext) + { + return table.SetPermissionsAsync(tablePermissions, requestOptions, operationContext); + } } } \ No newline at end of file diff --git a/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/GetAzureStorageQueueStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/GetAzureStorageQueueStoredAccessPolicy.cs new file mode 100644 index 000000000000..0b0fa07defc1 --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/GetAzureStorageQueueStoredAccessPolicy.cs @@ -0,0 +1,104 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Queue.Cmdlet +{ + using System; + using System.Globalization; + using System.Management.Automation; + using System.Security.Permissions; + using System.Threading.Tasks; + using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; + using Microsoft.WindowsAzure.Storage.Queue; + using Microsoft.WindowsAzure.Storage.Queue.Protocol; + + [Cmdlet(VerbsCommon.Get, StorageNouns.QueueStoredAccessPolicy), OutputType(typeof(SharedAccessQueuePolicy))] + public class GetAzureStorageQueueStoredAccessPolicyCommand : StorageQueueBaseCmdlet + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Queue Name", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Queue { get; set; } + + [Parameter(Position = 1, + HelpMessage = "Policy Identifier", + ValueFromPipelineByPropertyName = true)] + public string Policy { get; set; } + + /// + /// Initializes a new instance of the GetAzureStorageQueueStoredAccessPolicyCommand class. + /// + public GetAzureStorageQueueStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the GetAzureStorageQueueStoredAccessPolicyCommand class. + /// + /// IStorageBlobManagement channel + public GetAzureStorageQueueStoredAccessPolicyCommand(IStorageQueueManagement channel) + { + Channel = channel; + } + + internal async Task GetAzureQueueStoredAccessPolicyAsync(long taskId, IStorageQueueManagement localChannel, string queueName, string policyName) + { + SharedAccessQueuePolicies shareAccessPolicies = await GetPoliciesAsync(localChannel, queueName, policyName); + + if (!String.IsNullOrEmpty(policyName)) + { + if (shareAccessPolicies.Keys.Contains(policyName)) + { + OutputStream.WriteObject(taskId, AccessPolicyHelper.ConstructPolicyOutputPSObject(shareAccessPolicies, policyName)); + } + else + { + throw new ResourceNotFoundException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + } + } + else + { + foreach (string key in shareAccessPolicies.Keys) + { + OutputStream.WriteObject(taskId, AccessPolicyHelper.ConstructPolicyOutputPSObject(shareAccessPolicies, key)); + } + } + } + + internal async Task GetPoliciesAsync(IStorageQueueManagement localChannel, string queueName, string policyName) + { + CloudQueue queue = localChannel.GetQueueReference(queueName); + QueuePermissions queuePermissions = await localChannel.GetPermissionsAsync(queue); + return queuePermissions.SharedAccessPolicies; + } + + /// + /// Execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Queue)) return; + Func taskGenerator = (taskId) => GetAzureQueueStoredAccessPolicyAsync(taskId, Channel, Queue, Policy); + RunTask(taskGenerator); + } + + + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/NewAzureStorageQueueStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/NewAzureStorageQueueStoredAccessPolicy.cs new file mode 100644 index 000000000000..6a22dd1fb16e --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/NewAzureStorageQueueStoredAccessPolicy.cs @@ -0,0 +1,109 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Queue.Cmdlet +{ + using System; + using System.Globalization; + using System.Management.Automation; + using System.Security.Permissions; + using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; + using Microsoft.WindowsAzure.Storage.Queue; + using Microsoft.WindowsAzure.Storage.Queue.Protocol; + + [Cmdlet(VerbsCommon.New, StorageNouns.QueueStoredAccessPolicy), OutputType(typeof(String))] + public class NewAzureStorageQueueStoredAccessPolicyCommand : StorageQueueBaseCmdlet + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Queue Name", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Queue { get; set; } + + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Policy Identifier. Need to be unique in the Queue")] + [ValidateNotNullOrEmpty] + public string Policy {get; set; } + + [Parameter(HelpMessage = "Permissions for a queue. Permissions can be any not-empty subset of \"arup\".")] + public string Permission { get; set; } + + [Parameter(HelpMessage = "Start Time")] + public DateTime? StartTime { get; set; } + + [Parameter(HelpMessage = "Expiry Time")] + public DateTime? ExpiryTime { get; set; } + + /// + /// Initializes a new instance of the NewAzureStorageQueueStoredAccessPolicyCommand class. + /// + public NewAzureStorageQueueStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the NewAzureStorageQueueStoredAccessPolicyCommand class. + /// + /// IStorageBlobManagement channel + public NewAzureStorageQueueStoredAccessPolicyCommand(IStorageQueueManagement channel) + { + Channel = channel; + EnableMultiThread = false; + } + + internal string CreateAzureQueueStoredAccessPolicy(IStorageQueueManagement localChannel, string queueName, string policyName, DateTime? startTime, DateTime? expiryTime, string permission) + { + + if (!NameUtil.IsValidStoredAccessPolicyName(policyName)) + { + throw new ArgumentException(String.Format(CultureInfo.CurrentCulture, Resources.InvalidAccessPolicyName, policyName)); + } + + //Get existing permissions + CloudQueue queue = Channel.GetQueueReference(queueName); + QueuePermissions queuePermissions = localChannel.GetPermissions(queue); + + //Add new policy + if (queuePermissions.SharedAccessPolicies.Keys.Contains(policyName)) + { + throw new ResourceAlreadyExistException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyAlreadyExists, policyName)); + } + + SharedAccessQueuePolicy policy = new SharedAccessQueuePolicy(); + AccessPolicyHelper.SetupAccessPolicy(policy, startTime, expiryTime, permission); + queuePermissions.SharedAccessPolicies.Add(policyName, policy); + + //Set permissions back to queue + localChannel.SetPermissions(queue, queuePermissions); + return policyName; + } + + /// + /// Execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Queue) || String.IsNullOrEmpty(Policy)) return; + string resultPolicy = CreateAzureQueueStoredAccessPolicy(Channel, Queue, Policy, StartTime, ExpiryTime, Permission); + WriteObject(resultPolicy); + } + + + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/RemoveAzureStorageQueueStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/RemoveAzureStorageQueueStoredAccessPolicy.cs new file mode 100644 index 000000000000..62bd8214aae7 --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/RemoveAzureStorageQueueStoredAccessPolicy.cs @@ -0,0 +1,130 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Queue.Cmdlet +{ + using System; + using System.Globalization; + using System.Management.Automation; + using System.Security.Permissions; + using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; + using Microsoft.WindowsAzure.Storage.Queue; + using Microsoft.WindowsAzure.Storage.Queue.Protocol; + + [Cmdlet(VerbsCommon.Remove, StorageNouns.QueueStoredAccessPolicy, SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High), OutputType(typeof(Boolean))] + public class RemoveAzureStorageQueueStoredAccessPolicyCommand : StorageQueueBaseCmdlet + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Queue Name", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Queue { get; set; } + + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Policy Identifier", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Policy { get; set; } + + [Parameter(HelpMessage = "Force to remove the policy without confirm")] + public SwitchParameter Force + { + get { return force; } + set { force = value; } + } + private bool force; + + [Parameter(Mandatory = false, HelpMessage = "Return whether the specified policy is successfully removed")] + public SwitchParameter PassThru { get; set; } + + /// + /// Initializes a new instance of the RemoveAzureStorageQueueStoredAccessPolicyCommand class. + /// + public RemoveAzureStorageQueueStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the RemoveAzureStorageQueueStoredAccessPolicyCommand class. + /// + /// IStorageBlobManagement channel + public RemoveAzureStorageQueueStoredAccessPolicyCommand(IStorageQueueManagement channel) + { + Channel = channel; + EnableMultiThread = false; + } + + internal bool RemoveAzureQueueStoredAccessPolicy(IStorageQueueManagement localChannel, string queueName, string policyName) + { + bool success = false; + string result = string.Empty; + + //Get existing permissions + CloudQueue queue = Channel.GetQueueReference(queueName); + QueuePermissions queuePermissions = localChannel.GetPermissions(queue); + + //remove the specified policy + if (!queuePermissions.SharedAccessPolicies.Keys.Contains(policyName)) + { + throw new ResourceNotFoundException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + } + + if (force || ConfirmRemove(policyName)) + { + queuePermissions.SharedAccessPolicies.Remove(policyName); + localChannel.SetPermissions(queue, queuePermissions); + success = true; + } + + return success; + } + internal virtual bool ConfirmRemove(string message) + { + return ShouldProcess(message); + } + + /// + /// Execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Queue) || String.IsNullOrEmpty(Policy)) return; + bool success = RemoveAzureQueueStoredAccessPolicy(Channel, Queue, Policy); + string result = string.Empty; + + if (success) + { + result = String.Format(CultureInfo.CurrentCulture, Resources.RemovePolicySuccessfully, Policy); + } + else + { + result = String.Format(CultureInfo.CurrentCulture, Resources.RemovePolicyCancelled, Policy); + } + + WriteVerbose(result); + + if (PassThru) + { + WriteObject(success); + } + } + + + } +} + diff --git a/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/SetAzureStorageQueueStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/SetAzureStorageQueueStoredAccessPolicy.cs new file mode 100644 index 000000000000..f58af93f227f --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/SetAzureStorageQueueStoredAccessPolicy.cs @@ -0,0 +1,117 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.WindowsAzure.Commands.Storage.Queue.Cmdlet +{ + using System; + using System.Globalization; + using System.Management.Automation; + using System.Security.Permissions; + using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; + using Microsoft.WindowsAzure.Storage.Queue; + using Microsoft.WindowsAzure.Storage.Queue.Protocol; + + [Cmdlet(VerbsCommon.Set, StorageNouns.QueueStoredAccessPolicy), OutputType(typeof(String))] + public class SetAzureStorageQueueStoredAccessPolicyCommand : StorageQueueBaseCmdlet + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Queue Name", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Queue { get; set; } + + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Policy Identifier")] + [ValidateNotNullOrEmpty] + public string Policy {get; set; } + + [Parameter(HelpMessage = "Permissions for a queue. Permissions can be any not-empty subset of \"arup\".")] + public string Permission { get; set; } + + [Parameter(HelpMessage = "Start Time")] + public DateTime? StartTime { get; set; } + + [Parameter(HelpMessage = "Expiry Time")] + public DateTime? ExpiryTime { get; set; } + + [Parameter(HelpMessage = "Set StartTime as null for the policy")] + public SwitchParameter NoStartTime { get; set; } + + [Parameter(HelpMessage = "Set ExpiryTime as null for the policy")] + public SwitchParameter NoExpiryTime { get; set; } + + /// + /// Initializes a new instance of the SetAzureStorageQueueStoredAccessPolicyCommand class. + /// + public SetAzureStorageQueueStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the SetAzureStorageQueueStoredAccessPolicyCommand class. + /// + /// IStorageBlobManagement channel + public SetAzureStorageQueueStoredAccessPolicyCommand(IStorageQueueManagement channel) + { + Channel = channel; + EnableMultiThread = false; + } + + internal string SetAzureQueueStoredAccessPolicy(IStorageQueueManagement localChannel, string queueName, string policyName, DateTime? startTime, DateTime? expiryTime, string permission, bool noStartTime, bool noExpiryTime) + { + //Get existing permissions + CloudQueue queue = Channel.GetQueueReference(queueName); + QueuePermissions queuePermissions = localChannel.GetPermissions(queue); + + //Set the policy with new value + if (!queuePermissions.SharedAccessPolicies.Keys.Contains(policyName)) + { + throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + } + + SharedAccessQueuePolicy policy = queuePermissions.SharedAccessPolicies[policyName]; + AccessPolicyHelper.SetupAccessPolicy(policy, startTime, expiryTime, permission, noStartTime, noExpiryTime); + queuePermissions.SharedAccessPolicies[policyName] = policy; + + //Set permission back to queue + WriteObject(AccessPolicyHelper.ConstructPolicyOutputPSObject(queuePermissions.SharedAccessPolicies, policyName)); + localChannel.SetPermissions(queue, queuePermissions); + return policyName; + } + + /// + /// Execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Queue) || String.IsNullOrEmpty(Policy)) return; + if (NoStartTime && StartTime != null) + { + throw new ArgumentException(Resources.StartTimeParameterConflict); + } + + if (NoExpiryTime && ExpiryTime != null) + { + throw new ArgumentException(Resources.ExpiryTimeParameterConflict); + } + + SetAzureQueueStoredAccessPolicy(Channel, Queue, Policy, StartTime, ExpiryTime, Permission, NoStartTime, NoExpiryTime); + } + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage/Resources.Designer.cs b/src/ServiceManagement/Storage/Commands.Storage/Resources.Designer.cs index 54664d9182dc..a25b40dc3033 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Resources.Designer.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Resources.Designer.cs @@ -492,6 +492,15 @@ internal static string ExpiryTimeGreatThanStartTime { } } + /// + /// Looks up a localized string similar to Parameter -ExpiryTime and -NoExpiryTime are mutually exclusive. + /// + internal static string ExpiryTimeParameterConflict { + get { + return ResourceManager.GetString("ExpiryTimeParameterConflict", resourceCulture); + } + } + /// /// Looks up a localized string similar to File '{0}' already exists.. /// @@ -780,6 +789,24 @@ internal static string InvalidAccessPolicy { } } + /// + /// Looks up a localized string similar to Access policy name '{0}' is invalid. Valid names should be 1 through 64 characters long.. + /// + internal static string InvalidAccessPolicyName { + get { + return ResourceManager.GetString("InvalidAccessPolicyName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Access policy type is invalid, only SharedAccessBlobPolicy, SharedAccessQueuePolicy, and SharedAccessTablePolicy are supported. + /// + internal static string InvalidAccessPolicyType { + get { + return ResourceManager.GetString("InvalidAccessPolicyType", resourceCulture); + } + } + /// /// Looks up a localized string similar to invalid parameter combination, please see the command help.. /// @@ -1023,6 +1050,24 @@ internal static string PathTooLong { } } + /// + /// Looks up a localized string similar to Policy '{0}' already exists.. + /// + internal static string PolicyAlreadyExists { + get { + return ResourceManager.GetString("PolicyAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Can not find policy '{0}'.. + /// + internal static string PolicyNotFound { + get { + return ResourceManager.GetString("PolicyNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to Prepare to download blob.. /// @@ -1131,6 +1176,24 @@ internal static string RemoveContainerSuccessfully { } } + /// + /// Looks up a localized string similar to The remove operation of policy '{0}' has been cancelled.. + /// + internal static string RemovePolicyCancelled { + get { + return ResourceManager.GetString("RemovePolicyCancelled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removed policy '{0}' successfully.. + /// + internal static string RemovePolicySuccessfully { + get { + return ResourceManager.GetString("RemovePolicySuccessfully", resourceCulture); + } + } + /// /// Looks up a localized string similar to The remove operation of queue '{0}' has been cancelled.. /// @@ -1284,6 +1347,15 @@ internal static string StartRemoteCall { } } + /// + /// Looks up a localized string similar to Parameter -StartTime and -NoStartTime are mutually exclusive. + /// + internal static string StartTimeParameterConflict { + get { + return ResourceManager.GetString("StartTimeParameterConflict", resourceCulture); + } + } + /// /// Looks up a localized string similar to Start to upload '{0}' to blob '{1}'.. /// diff --git a/src/ServiceManagement/Storage/Commands.Storage/Resources.resx b/src/ServiceManagement/Storage/Commands.Storage/Resources.resx index d7e24e14b87b..7ad2600af092 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Resources.resx +++ b/src/ServiceManagement/Storage/Commands.Storage/Resources.resx @@ -665,4 +665,28 @@ Failed: {2}. Valid environment names are: '{0}' and '{1}' 0 and 1 are for the correct Environment names + + Policy '{0}' already exists. + + + Can not find policy '{0}'. + + + The remove operation of policy '{0}' has been cancelled. + + + Removed policy '{0}' successfully. + + + Access policy type is invalid, only SharedAccessBlobPolicy, SharedAccessQueuePolicy, and SharedAccessTablePolicy are supported + + + Access policy name '{0}' is invalid. Valid names should be 1 through 64 characters long. + + + Parameter -ExpiryTime and -NoExpiryTime are mutually exclusive + + + Parameter -StartTime and -NoStartTime are mutually exclusive + \ No newline at end of file diff --git a/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/GetAzureStorageTableStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/GetAzureStorageTableStoredAccessPolicy.cs new file mode 100644 index 000000000000..52daf2df4c6a --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/GetAzureStorageTableStoredAccessPolicy.cs @@ -0,0 +1,104 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Globalization; +using System.Management.Automation; +using System.Security.Permissions; +using System.Threading.Tasks; +using Microsoft.WindowsAzure.Commands.Storage.Common; +using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; +using Microsoft.WindowsAzure.Commands.Storage.Table; +using Microsoft.WindowsAzure.Storage.Table; + +namespace Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet +{ + [Cmdlet(VerbsCommon.Get, StorageNouns.TableStoredAccessPolicy), OutputType(typeof(SharedAccessTablePolicy))] + public class GetAzureStorageTableStoredAccessPolicyCommand : StorageCloudTableCmdletBase + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Table Name", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Table { get; set; } + + [Parameter(Position = 1, + HelpMessage = "Policy Identifier", + ValueFromPipelineByPropertyName = true)] + public string Policy {get; set; } + + /// + /// Initializes a new instance of the GetAzureStorageTableStoredAccessPolicyCommand class. + /// + public GetAzureStorageTableStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the GetAzureStorageTableStoredAccessPolicyCommand class. + /// + /// IStorageTableManagement channel + public GetAzureStorageTableStoredAccessPolicyCommand(IStorageTableManagement channel) + { + Channel = channel; + } + + internal async Task GetAzureTableStoredAccessPolicyAsync(long taskId, IStorageTableManagement localChannel, string tableName, string policyName) + { + SharedAccessTablePolicies shareAccessPolicies = await GetPoliciesAsync(localChannel, tableName, policyName); + + if (!String.IsNullOrEmpty(policyName)) + { + if (shareAccessPolicies.Keys.Contains(policyName)) + { + OutputStream.WriteObject(taskId, AccessPolicyHelper.ConstructPolicyOutputPSObject(shareAccessPolicies, policyName)); + } + else + { + throw new ResourceNotFoundException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + } + } + else + { + foreach (string key in shareAccessPolicies.Keys) + { + OutputStream.WriteObject(taskId, AccessPolicyHelper.ConstructPolicyOutputPSObject(shareAccessPolicies, key)); + } + } + } + + internal async Task GetPoliciesAsync(IStorageTableManagement localChannel, string tableName, string policyName) + { + CloudTable table = localChannel.GetTableReference(tableName); + TablePermissions tablePermissions = await localChannel.GetTablePermissionsAsync(table); + return tablePermissions.SharedAccessPolicies; + } + + /// + /// Execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Table)) return; + Func taskGenerator = (taskId) => GetAzureTableStoredAccessPolicyAsync(taskId, Channel, Table, Policy); + RunTask(taskGenerator); + } + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/NewAzureStorageTableStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/NewAzureStorageTableStoredAccessPolicy.cs new file mode 100644 index 000000000000..aebd700fde01 --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/NewAzureStorageTableStoredAccessPolicy.cs @@ -0,0 +1,109 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Globalization; +using System.Management.Automation; +using System.Security.Permissions; +using System.Threading.Tasks; +using Microsoft.WindowsAzure.Commands.Storage.Common; +using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; +using Microsoft.WindowsAzure.Commands.Storage.Table; +using Microsoft.WindowsAzure.Storage.Table; + +namespace Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet +{ + [Cmdlet(VerbsCommon.New, StorageNouns.TableStoredAccessPolicy), OutputType(typeof(String))] + public class NewAzureStorageTableStoredAccessPolicyCommand : StorageCloudTableCmdletBase + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Table Name", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Table { get; set; } + + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Policy Identifier. Need to be unique in the Table")] + [ValidateNotNullOrEmpty] + public string Policy {get; set;} + + [Parameter(HelpMessage = "Permissions for a table. Permissions can be any not-empty subset of \"audqr\".")] + public string Permission { get; set; } + + [Parameter(HelpMessage = "Start Time")] + public DateTime? StartTime { get; set; } + + [Parameter(HelpMessage = "Expiry Time")] + public DateTime? ExpiryTime { get; set; } + + + /// + /// Initializes a new instance of the NewAzureStorageTableStoredAccessPolicyCommand class. + /// + public NewAzureStorageTableStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the NewAzureStorageTableStoredAccessPolicyCommand class. + /// + /// IStorageTableManagement channel + public NewAzureStorageTableStoredAccessPolicyCommand(IStorageTableManagement channel) + { + Channel = channel; + EnableMultiThread = false; + } + + internal string CreateAzureTableStoredAccessPolicy(IStorageTableManagement localChannel, string tableName, string policyName, DateTime? startTime, DateTime? expiryTime, string permission) + { + + if (!NameUtil.IsValidStoredAccessPolicyName(policyName)) + { + throw new ArgumentException(String.Format(CultureInfo.CurrentCulture, Resources.InvalidAccessPolicyName, policyName)); + } + + //Get existing permissions + CloudTable table = localChannel.GetTableReference(tableName); + TablePermissions tablePermissions = localChannel.GetTablePermissions(table); + + //Add new policy + if (tablePermissions.SharedAccessPolicies.Keys.Contains(policyName)) + { + throw new ResourceAlreadyExistException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyAlreadyExists, policyName)); + } + + SharedAccessTablePolicy policy = new SharedAccessTablePolicy(); + AccessPolicyHelper.SetupAccessPolicy(policy, startTime, expiryTime, permission); + tablePermissions.SharedAccessPolicies.Add(policyName, policy); + + //Set permissions back to table + localChannel.SetTablePermissions(table, tablePermissions); + return policyName; + } + + /// + /// Execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Table) || String.IsNullOrEmpty(Policy)) return; + string resultPolicy = CreateAzureTableStoredAccessPolicy(Channel, Table, Policy, StartTime, ExpiryTime, Permission); + WriteObject(resultPolicy); + } + } +} diff --git a/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/RemoveAzureStorageTableStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/RemoveAzureStorageTableStoredAccessPolicy.cs new file mode 100644 index 000000000000..d8bbeb91afcc --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/RemoveAzureStorageTableStoredAccessPolicy.cs @@ -0,0 +1,130 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Globalization; +using System.Management.Automation; +using System.Security.Permissions; +using System.Threading.Tasks; +using Microsoft.WindowsAzure.Commands.Storage.Common; +using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; +using Microsoft.WindowsAzure.Commands.Storage.Table; +using Microsoft.WindowsAzure.Storage.Table; + +namespace Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet +{ + [Cmdlet(VerbsCommon.Remove, StorageNouns.TableStoredAccessPolicy, SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High), OutputType(typeof(Boolean))] + public class RemoveAzureStorageTableStoredAccessPolicyCommand : StorageCloudTableCmdletBase + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Table Name", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Table { get; set; } + + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Policy Identifier", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Policy {get; set; } + + [Parameter(HelpMessage = "Force to remove the policy without confirm")] + public SwitchParameter Force + { + get { return force; } + set { force = value; } + } + private bool force; + + [Parameter(Mandatory = false, HelpMessage = "Return whether the specified policy is successfully removed")] + public SwitchParameter PassThru { get; set; } + + /// + /// Initializes a new instance of the RemoveAzureStorageTableStoredAccessPolicyCommand class. + /// + public RemoveAzureStorageTableStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the RemoveAzureStorageTableStoredAccessPolicyCommand class. + /// + /// IStorageTableManagement channel + public RemoveAzureStorageTableStoredAccessPolicyCommand(IStorageTableManagement channel) + { + Channel = channel; + EnableMultiThread = false; + } + + internal virtual bool ConfirmRemove(string message) + { + return ShouldProcess(message); + } + + internal bool RemoveAzureTableStoredAccessPolicy(IStorageTableManagement localChannel, string tableName, string policyName) + { + bool success = false; + string result = string.Empty; + + //Get existing permissions + CloudTable table = localChannel.GetTableReference(tableName); + TablePermissions tablePermissions = localChannel.GetTablePermissions(table); + + //remove the specified policy + if (!tablePermissions.SharedAccessPolicies.Keys.Contains(policyName)) + { + throw new ResourceNotFoundException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + } + + if (force || ConfirmRemove(policyName)) + { + tablePermissions.SharedAccessPolicies.Remove(policyName); + localChannel.SetTablePermissions(table, tablePermissions); + success = true; + } + + return success; + } + + /// + /// Execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Table) || String.IsNullOrEmpty(Policy)) return; + bool success = RemoveAzureTableStoredAccessPolicy(Channel, Table, Policy); + string result = string.Empty; + + if (success) + { + result = String.Format(CultureInfo.CurrentCulture, Resources.RemovePolicySuccessfully, Policy); + } + else + { + result = String.Format(CultureInfo.CurrentCulture, Resources.RemovePolicyCancelled, Policy); + } + + WriteVerbose(result); + + if (PassThru) + { + WriteObject(success); + } + } + } +} + diff --git a/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/SetAzureStorageTableStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/SetAzureStorageTableStoredAccessPolicy.cs new file mode 100644 index 000000000000..20b27db7efdd --- /dev/null +++ b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/SetAzureStorageTableStoredAccessPolicy.cs @@ -0,0 +1,123 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Globalization; +using System.Management.Automation; +using System.Security.Permissions; +using System.Threading.Tasks; +using Microsoft.WindowsAzure.Commands.Storage.Common; +using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; +using Microsoft.WindowsAzure.Commands.Storage.Table; +using Microsoft.WindowsAzure.Storage.Table; + +namespace Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet +{ + [Cmdlet(VerbsCommon.Set, StorageNouns.TableStoredAccessPolicy), OutputType(typeof(String))] + public class SetAzureStorageTableStoredAccessPolicyCommand : StorageCloudTableCmdletBase + { + [Alias("N", "Name")] + [Parameter(Position = 0, Mandatory = true, + HelpMessage = "Table Name", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Table { get; set; } + + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Policy Identifier")] + [ValidateNotNullOrEmpty] + public string Policy { get; set; } + + [Parameter(HelpMessage = "Permissions for a table. Permissions can be any not-empty subset of \"audqr\".")] + public string Permission { get; set; } + + [Parameter(HelpMessage = "Start Time")] + public DateTime? StartTime { get; set; } + + [Parameter(HelpMessage = "Expirty Time")] + public DateTime? ExpiryTime { get; set; } + + [Parameter(HelpMessage = "Set StartTime as null for the policy")] + public SwitchParameter NoStartTime { get; set; } + + [Parameter(HelpMessage = "Set ExpiryTime as null for the policy")] + public SwitchParameter NoExpiryTime { get; set; } + + /// + /// Initializes a new instance of the SetAzureStorageTableStoredAccessPolicyCommand class. + /// + public SetAzureStorageTableStoredAccessPolicyCommand() + : this(null) + { + } + + /// + /// Initializes a new instance of the SetAzureStorageTableStoredAccessPolicyCommand class. + /// + /// IStorageTableManagement channel + public SetAzureStorageTableStoredAccessPolicyCommand(IStorageTableManagement channel) + { + Channel = channel; + EnableMultiThread = false; + } + + internal string SetAzureTableStoredAccessPolicy(IStorageTableManagement localChannel, string tableName, string policyName, DateTime? startTime, DateTime? expiryTime, string permission, bool noStartTime, bool noExpiryTime) + { + DateTime? startTimeToSet = startTime; + DateTime? expiryTimetoSet = expiryTime; + + //Get existing permissions + CloudTable table = localChannel.GetTableReference(Table); + TablePermissions tablePermissions = localChannel.GetTablePermissions(table); + + //Set the policy with new value + if (!tablePermissions.SharedAccessPolicies.Keys.Contains(policyName)) + { + throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); + } + + SharedAccessTablePolicy policy = tablePermissions.SharedAccessPolicies[policyName]; + AccessPolicyHelper.SetupAccessPolicy(policy, startTime, expiryTime, permission, noStartTime, noExpiryTime); + tablePermissions.SharedAccessPolicies[policyName] = policy; + + //Set permission back to table + localChannel.SetTablePermissions(table, tablePermissions); + WriteObject(AccessPolicyHelper.ConstructPolicyOutputPSObject(tablePermissions.SharedAccessPolicies, policyName)); + return policyName; + } + + /// + /// Execute command + /// + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + if (String.IsNullOrEmpty(Table) || String.IsNullOrEmpty(Policy)) return; + if (NoStartTime && StartTime != null) + { + throw new ArgumentException(Resources.StartTimeParameterConflict); + } + + if (NoExpiryTime && ExpiryTime != null) + { + throw new ArgumentException(Resources.ExpiryTimeParameterConflict); + } + + SetAzureTableStoredAccessPolicy(Channel, Table, Policy, StartTime, ExpiryTime, Permission, NoStartTime, NoExpiryTime); + } + } +} + + From 69235f9194261774b0bf0b3b623c8ba485e136c1 Mon Sep 17 00:00:00 2001 From: emmazhu Date: Tue, 23 Dec 2014 10:07:48 +0800 Subject: [PATCH 02/40] Use property directly instead a separate member in class. --- .../Cmdlet/RemoveAzureStorageQueueStoredAccessPolicy.cs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/RemoveAzureStorageQueueStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/RemoveAzureStorageQueueStoredAccessPolicy.cs index 62bd8214aae7..03d4d5a8f317 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/RemoveAzureStorageQueueStoredAccessPolicy.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Queue/Cmdlet/RemoveAzureStorageQueueStoredAccessPolicy.cs @@ -40,12 +40,7 @@ public class RemoveAzureStorageQueueStoredAccessPolicyCommand : StorageQueueBase public string Policy { get; set; } [Parameter(HelpMessage = "Force to remove the policy without confirm")] - public SwitchParameter Force - { - get { return force; } - set { force = value; } - } - private bool force; + public SwitchParameter Force { get; set;} [Parameter(Mandatory = false, HelpMessage = "Return whether the specified policy is successfully removed")] public SwitchParameter PassThru { get; set; } @@ -83,7 +78,7 @@ internal bool RemoveAzureQueueStoredAccessPolicy(IStorageQueueManagement localCh throw new ResourceNotFoundException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); } - if (force || ConfirmRemove(policyName)) + if (this.Force || ConfirmRemove(policyName)) { queuePermissions.SharedAccessPolicies.Remove(policyName); localChannel.SetPermissions(queue, queuePermissions); From dc63110980a822f9381e23dcdf683635617f2e11 Mon Sep 17 00:00:00 2001 From: emmazhu Date: Tue, 23 Dec 2014 10:12:46 +0800 Subject: [PATCH 03/40] Use property directly instead a separate member in class. --- .../RemoveAzureStorageContainerStoredAccessPolicy.cs | 9 ++------- .../Cmdlet/RemoveAzureStorageTableStoredAccessPolicy.cs | 9 ++------- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/RemoveAzureStorageContainerStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/RemoveAzureStorageContainerStoredAccessPolicy.cs index ea76e58352c7..99c4d0338499 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/RemoveAzureStorageContainerStoredAccessPolicy.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/RemoveAzureStorageContainerStoredAccessPolicy.cs @@ -44,12 +44,7 @@ public class RemoveAzureStorageContainerStoredAccessPolicyCommand : StorageCloud public string Policy {get; set; } [Parameter(HelpMessage = "Force to remove the policy without confirm")] - public SwitchParameter Force - { - get { return force; } - set { force = value; } - } - private bool force; + public SwitchParameter Force { get; set; } [Parameter(Mandatory = false, HelpMessage = "Return whether the specified policy is successfully removed")] public SwitchParameter PassThru { get; set; } @@ -92,7 +87,7 @@ internal bool RemoveAzureContainerStoredAccessPolicy(IStorageBlobManagement loca throw new ResourceNotFoundException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); } - if (force || ConfirmRemove(policyName)) + if (this.Force || ConfirmRemove(policyName)) { blobContainerPermissions.SharedAccessPolicies.Remove(policyName); localChannel.SetContainerPermissions(container, blobContainerPermissions); diff --git a/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/RemoveAzureStorageTableStoredAccessPolicy.cs b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/RemoveAzureStorageTableStoredAccessPolicy.cs index d8bbeb91afcc..28015a704842 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/RemoveAzureStorageTableStoredAccessPolicy.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Table/Cmdlet/RemoveAzureStorageTableStoredAccessPolicy.cs @@ -41,12 +41,7 @@ public class RemoveAzureStorageTableStoredAccessPolicyCommand : StorageCloudTabl public string Policy {get; set; } [Parameter(HelpMessage = "Force to remove the policy without confirm")] - public SwitchParameter Force - { - get { return force; } - set { force = value; } - } - private bool force; + public SwitchParameter Force { get; set; } [Parameter(Mandatory = false, HelpMessage = "Return whether the specified policy is successfully removed")] public SwitchParameter PassThru { get; set; } @@ -89,7 +84,7 @@ internal bool RemoveAzureTableStoredAccessPolicy(IStorageTableManagement localCh throw new ResourceNotFoundException(String.Format(CultureInfo.CurrentCulture, Resources.PolicyNotFound, policyName)); } - if (force || ConfirmRemove(policyName)) + if (this.Force || ConfirmRemove(policyName)) { tablePermissions.SharedAccessPolicies.Remove(policyName); localChannel.SetTablePermissions(table, tablePermissions); From eacd4dc6794254ea93cd0c4a102ee008c24df783 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 2 Apr 2015 12:39:58 +0900 Subject: [PATCH 04/40] Add mocked test to validate DateTime.Max values --- .../Commands.ScenarioTest.csproj | 7 +- ...{VMProvisionTests.ps1 => AzureVMTests.ps1} | 25 +- .../Resources/ServiceManagement/Common.ps1 | 74 +- .../ServiceManagement/GetVMTests.cs | 63 + .../VMProvisionScenarioTests.cs | 65 - .../TestGetAzureVM.json | 1293 +++++++++++++++++ 6 files changed, 1454 insertions(+), 73 deletions(-) rename src/Common/Commands.ScenarioTest/Resources/ServiceManagement/{VMProvisionTests.ps1 => AzureVMTests.ps1} (65%) create mode 100644 src/Common/Commands.ScenarioTest/ServiceManagement/GetVMTests.cs delete mode 100644 src/Common/Commands.ScenarioTest/ServiceManagement/VMProvisionScenarioTests.cs create mode 100644 src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.AzureVMTests/TestGetAzureVM.json diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index 09fa34810844..7d87a6e848d4 100644 --- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -201,6 +201,9 @@ PreserveNewest + + Always + PreserveNewest @@ -282,10 +285,10 @@ + - @@ -406,7 +409,7 @@ PreserveNewest - + PreserveNewest diff --git a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/VMProvisionTests.ps1 b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/AzureVMTests.ps1 similarity index 65% rename from src/Common/Commands.ScenarioTest/Resources/ServiceManagement/VMProvisionTests.ps1 rename to src/Common/Commands.ScenarioTest/Resources/ServiceManagement/AzureVMTests.ps1 index 456171ad8a85..8d1f3b256780 100644 --- a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/VMProvisionTests.ps1 +++ b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/AzureVMTests.ps1 @@ -18,11 +18,30 @@ .SYNOPSIS Tests Create-AzureVM with valid information. #> -function Test-CreateWindowsAzureQuickVM +function Test-GetAzureVM { # Setup + $location = Get-DefaultLocation + $imgName = Get-DefaultImage $location + + + $storageName = getAssetName + New-AzureStorageAccount -StorageAccountName $storageName -Location $location + + Set-CurrentStorageAccountName $storageName + + $vmName = "vm1" + $svcName = Get-CloudServiceName # Test - New-AzureQuickVM -Windows -ImageName $imageName -Name $newAzureQuickVMName -ServiceName $newAzureQuickVMSvcName -Password "p@ssw0rd" -Location $location -} \ No newline at end of file + New-AzureService -ServiceName $svcName -Location $location + New-AzureQuickVM -Windows -ImageName $imgName -Name $vmName -ServiceName $svcName -AdminUsername "pstestuser" -Password "p@ssw0rd" + + Get-AzureVM -ServiceName $svcName -Name $vmName + + + # Cleanup + Cleanup-CloudService $svcName +} + diff --git a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Common.ps1 b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Common.ps1 index 467ce512adfc..6ad74e6f3fd8 100644 --- a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Common.ps1 +++ b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Common.ps1 @@ -12,11 +12,79 @@ # limitations under the License. # ---------------------------------------------------------------------------------- + <# .SYNOPSIS -Sets +Sets the default storage account #> function Set-CurrentStorageAccountName { - Get-AzureSubscription -Default | Set-AzureSubscription -CurrentStorageAccountName "" -} \ No newline at end of file + param([string] $storageAccountName) + $currentSubscription = Get-AzureSubscription -Current + + Set-AzureSubscription -SubscriptionId $currentSubscription.SubscriptionId -CurrentStorageAccountName $storageAccountName +} + +<# +.SYNOPSIS +Gets the default location +#> +function Get-DefaultLocation +{ + return (Get-AzureLocation)[0].Name +} + +<# +.SYNOPSIS +Gets the default image +#> +function Get-DefaultImage +{ + param([string] $loc) + return (Get-AzureVMImage | where {$_.OS -eq "Windows"} | where {$_.Location.Contains($loc)})[0].ImageName +} + + +<# +.SYNOPSIS +Gets valid and available cloud service name. +#> +function Get-CloudServiceName +{ + return getAssetName +} + +<# +.SYNOPSIS +Cleanup cloud service +#> +function Cleanup-CloudService +{ + param([string] $name) + try + { + Remove-AzureService -ServiceName $name -Force + } + catch + { + Write-Warning "Cannot Remove the Cloud Service" + } +} + +<# +.SYNOPSIS +Cleanup storage +#> +function Cleanup-Storage +{ + param([string] $name) + Remove-AzureStorageAccount -StorageAccountName $name + try + { + Remove-AzureStorageAccount -StorageAccountName $name + } + catch + { + Write-Warning "Cannot Remove the Storage Account" + } +} diff --git a/src/Common/Commands.ScenarioTest/ServiceManagement/GetVMTests.cs b/src/Common/Commands.ScenarioTest/ServiceManagement/GetVMTests.cs new file mode 100644 index 000000000000..e53a2880b3de --- /dev/null +++ b/src/Common/Commands.ScenarioTest/ServiceManagement/GetVMTests.cs @@ -0,0 +1,63 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Test; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using Xunit; + +namespace Microsoft.WindowsAzure.Commands.ScenarioTest +{ + public class AzureVMTests + { + private EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); + + #region Get-AzureVM Scenario Tests + + [Fact] + [Trait(Category.Service, Category.ServiceManagement)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] + public void TestGetAzureVM() + { + this.RunPowerShellTest("Test-GetAzureVM"); + } + #endregion + + protected void SetupManagementClients() + { + helper.SetupSomeOfManagementClients(); + } + + protected void RunPowerShellTest(params string[] scripts) + { + using (UndoContext context = UndoContext.Current) + { + context.Start(TestUtilities.GetCallingClass(1), TestUtilities.GetCurrentMethodName(2)); + + SetupManagementClients(); + + List modules = Directory.GetFiles("Resources\\ServiceManagement", "*.ps1").ToList(); + modules.Add("Common.ps1"); + + helper.SetupEnvironment(AzureModule.AzureServiceManagement); + helper.SetupModules(AzureModule.AzureServiceManagement, modules.ToArray()); + + helper.RunPowerShellTest(scripts); + } + } + } +} diff --git a/src/Common/Commands.ScenarioTest/ServiceManagement/VMProvisionScenarioTests.cs b/src/Common/Commands.ScenarioTest/ServiceManagement/VMProvisionScenarioTests.cs deleted file mode 100644 index c31e99ebd6f6..000000000000 --- a/src/Common/Commands.ScenarioTest/ServiceManagement/VMProvisionScenarioTests.cs +++ /dev/null @@ -1,65 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.VisualStudio.TestTools.UnitTesting; -using Microsoft.WindowsAzure.Commands.ScenarioTest.Common; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.ConfigDataInfo; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.Properties; - -namespace Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagemenet -{ - [TestClass] - public class VMProvisionScenarioTests : AzurePowerShellCertificateTest - { - public VMProvisionScenarioTests() - : base("CloudService\\Common.ps1", - "ServiceManagement\\Common.ps1", - "ServiceManagement\\VMProvisionTests.ps1" - ) - { - - } - - [TestMethod] - [TestCategory(Category.All)] - [TestCategory(Category.ServiceManagement)] - [TestProperty("Feature", "IaaS"), Priority(1), Owner("priya"), Description("Test the cmdlets (New-AzureQuickVM,Get-AzureVMImage,Get-AzureVM,Get-AzureLocation,Import-AzurePublishSettingsFile,Get-AzureSubscription,Set-AzureSubscription)")] - [Ignore] // https://github.com/WindowsAzure/azure-sdk-tools/issues/1402 - public void NewWindowsAzureQuickVM() - { - powershell.Invoke(); - - ServiceManagementCmdletTestHelper vmPowershellCmdlets = new ServiceManagementCmdletTestHelper(); - - string imageName = vmPowershellCmdlets.GetAzureVMImageName(new[] { "Windows" }, false); - string locationName = vmPowershellCmdlets.GetAzureLocationName(new[] { Resource.Location }); - - string newAzureQuickVMName = ServiceManagement.Test.FunctionalTests.Utilities.GetUniqueShortName("PSTestVM"); - string newAzureQuickVMSvcName = ServiceManagement.Test.FunctionalTests.Utilities.GetUniqueShortName("PSTestService"); - - vmPowershellCmdlets.NewAzureQuickVM(OS.Windows, newAzureQuickVMName, newAzureQuickVMSvcName, imageName, "pstestuser", "p@ssw0rd", locationName); - - // Verify - PersistentVMRoleContext vmRoleCtxt = vmPowershellCmdlets.GetAzureVM(newAzureQuickVMName, newAzureQuickVMSvcName); - Assert.AreEqual(newAzureQuickVMName, vmRoleCtxt.Name, true); - - // Cleanup - vmPowershellCmdlets.RemoveAzureVM(newAzureQuickVMName, newAzureQuickVMSvcName); - - Assert.AreEqual(null, vmPowershellCmdlets.GetAzureVM(newAzureQuickVMName, newAzureQuickVMSvcName)); - } - } -} diff --git a/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.AzureVMTests/TestGetAzureVM.json b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.AzureVMTests/TestGetAzureVM.json new file mode 100644 index 000000000000..ce529efa5d62 --- /dev/null +++ b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.AzureVMTests/TestGetAzureVM.json @@ -0,0 +1,1293 @@ +{ + "Entries": [ + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/locations", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9sb2NhdGlvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "15693" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f1a8c3b8b920852cb1b0c3ea39b7edab" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:12 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/f1a8c3b8b920852cb1b0c3ea39b7edab", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zL2YxYThjM2I4YjkyMDg1MmNiMWIwYzNlYTM5YjdlZGFi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n f1a8c3b8-b920-852c-b1b0-c3ea39b7edab\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "65adbe8037d28146b464f3a0a79da8b0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:12 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/images", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9pbWFnZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.0-AzureSDK-2.5-WS2012R2-201412.10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.0 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.0 on Windows Server 2012 R2\r\n 2014-12-10T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.5-WS2012R2-201502.23\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-02-23T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Ultimate-CTP6-14.0.22609.00-AzureSDK-2.5-Cordova-CTP3.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=402934\r\n The Visual Studio Ultimate 2015 CTP 6 image enables you to quickly create a development environment to explore the new Visual Studio 2015 capabilities. The image also includes Microsoft Azure SDK 2.5 as well the latest C++ and Cordova cross-platform tooling components. By using the image you agree to Microsoft Supplemental Software License Terms for Microsoft Visual Studio 2015 Product Family Preview which can be found on the image desktop.\r\n Visual Studio Ultimate 2015 CTP 6 on Windows Server 2012 R2\r\n 2015-02-16T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=341745\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_91-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 91) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-01-15T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_91-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 91) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-03-24T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_75-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 75) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-01-15T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_75-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 75) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-03-24T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_31-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 31) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-01-15T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_31-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 31) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-03-24T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_75-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_75-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-150206-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-02-06T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_75-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_75-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-150115-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-150324-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_75-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_75-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-150115-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-150324-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_75-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_75-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Medium\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_75-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_75-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_75-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_75-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_75-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_75-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_75-150115-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-01-15T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_75-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Small|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-03-24T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-150206-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-02-06T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-03-24T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_31-150206-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 31) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-02-06T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_31-150324-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 31) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-03-24T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft Open Technologies, Inc.\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Sep-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n 2014-09-23T07:00:00Z\r\n false\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1a-3-20141016\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-10-16T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-5.4.3-182\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 5.4\r\n true\r\n 2014-07-14T16:00:00Z\r\n false\r\n Barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n Barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-5.4.3-182-pl4\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 5.4\r\n true\r\n 2014-10-22T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.8.2.008\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) tehnology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.8\r\n true\r\n 2014-07-14T16:00:00Z\r\n false\r\n Barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n Barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.8.2.008-20141015-byol\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads, application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) tehnology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.8\r\n true\r\n 2014-10-15T19:00:00Z\r\n false\r\n Barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n Barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.8.2.008-pl4\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads, application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) tehnology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.8\r\n true\r\n 2014-10-22T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201501NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-01-26T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-11T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141204\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-04T07:13:06.2866289Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201411.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2014-11-14T08:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201412.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2014-12-11T08:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201502.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-02-11T08:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201503.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-03-12T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201411.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2014-11-14T08:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201412.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2014-12-11T08:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201502.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-02-11T08:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-03-12T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201411.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2014-11-14T08:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201412.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2014-12-11T08:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201502.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-02-11T08:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201503.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-03-12T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201410.01-en.us-127GB.vhd\r\n Windows\r\n Server\r\n At the heart of the Microsoft Cloud OS vision, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. This VHD contains a preview release and should strictly be used for testing purposes. The VHD won’t be serviced or supported for production use and the trial period expires on April 15th, 2015.\r\n Windows Server Technical Preview\r\n 2014-10-01T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140421-1748\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-04-21T19:09:55.3775121Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140502-1817\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-05-02T19:00:47.4740507Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140509-1817\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-05-09T19:06:56.874678Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140512-2037\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-05-12T21:28:12.4214603Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140514-1702\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-05-14T17:59:34.290158Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140606-1902\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-06-06T19:26:36.4135716Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140910-2215\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-09-10T23:17:11.0908022Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20140514-1852\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-05-14T19:33:36.5822032Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150227-2347\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-02-28T01:22:59.7101395Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140625-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140625) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-06-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140729-alpha2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140729) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140826-beta1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140826) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-08-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20140923-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20140923) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141022.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141022.3) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-10-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20141204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20141204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2014-12-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20141216-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20141216) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2014-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150120.1-alpha2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150120.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-01-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150224.5-beta1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150224.5) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150325-beta2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-03-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-core-devel-amd64-20141209-90-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core (Devel). Ubuntu Core is currently in developer preview. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 90 ALPHA\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-core-devel-amd64-20141211-90-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core (Devel). Ubuntu Core is currently in developer preview. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 90 ALPHA\r\n false\r\n 2014-12-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-core-devel-amd64-20150115-90-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core (Devel). Ubuntu Core is currently in developer preview. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 90 ALPHA\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-core-devel-amd64-20150115.1-90-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core (Devel). Ubuntu Core is currently in developer preview. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 90 ALPHA\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-core-devel-amd64-alpha-02-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core (Devel). Ubuntu Core is currently in developer preview. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core ALPHA\r\n false\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2015-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150203-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150203) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2015-02-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150204.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150205.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150205.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2015-02-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150206-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150206) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2015-02-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150210-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150210) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2015-02-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150227 of Ubuntu Server 12.04.5 LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150309 of Ubuntu Server 12.04.5.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-03-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5_LTS-amd64-server-20150312.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150312.1 of Ubuntu Server 12.04.5.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-03-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5_LTS-amd64-server-20150316-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150316 of Ubuntu Server 12.04.5.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-03-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5_LTS-amd64-server-20150319-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150319 of Ubuntu Server 12.04.5.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-03-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5_LTS-amd64-server-20150323-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150323 of Ubuntu Server 12.04.5.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5_LTS-amd64-server-20150323.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150323.1 of Ubuntu Server 12.04.5.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5_LTS-amd64-server-20150323.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150323.2 of Ubuntu Server 12.04.5.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5_LTS-amd64-server-20150323.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150323.3 of Ubuntu Server 12.04.5.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5_LTS-amd64-server-20150325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150325 of Ubuntu Server 12.04.5.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_1-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n false\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_1-LTS-amd64-server-20150128-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150128) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_1-LTS-amd64-server-20150130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n false\r\n 2015-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_1-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n false\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_1-LTS-amd64-server-20150204.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150204.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n false\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_1-LTS-amd64-server-20150206.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150206.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n false\r\n 2015-02-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_1-LTS-amd64-server-20150206.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150206.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n false\r\n 2015-02-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_1-LTS-amd64-server-20150209-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150209) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n false\r\n 2015-02-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_1-LTS-amd64-server-20150209.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150209.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n false\r\n 2015-02-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150313.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150313.1 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150313.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150313.2 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150316-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150316 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150319-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150319 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150320-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150320 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150323-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150323 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150323.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150323.1 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150323.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150323.2 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150324.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150324.2 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2_LTS-amd64-server-20150325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150325 of Ubuntu Server 14.04.2.LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150116-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150116) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150120-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150120) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150122-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150122) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-01-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150128-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150128) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150202-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150202) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-02-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150204.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150204.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150206-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150206) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-02-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150209-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.10 (amd64 20150209) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.10 will be available until 2015-07-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.10\r\n false\r\n 2015-02-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150309 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150312.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150312.3 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150316-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150316 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150317.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150317.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150317.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150317.3 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150318.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150318.3 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150319.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150319.1 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150322-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150322 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150323-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150323 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-utopic-14_10-amd64-server-20150325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150325 of Ubuntu Server 14.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.10 DAILY\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150203.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150203.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150205.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150205.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150205.6-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150205.6) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150206-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150206) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150206.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150206.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150206.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150206.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150207-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150207) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150208-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150208) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150210-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150210) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150210.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150210.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n false\r\n 2015-02-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150323.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150323.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150324-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150324 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150324.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150324.2 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150325 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150327-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150327 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150327.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150327.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150327.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150327.2 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150327.3-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150327.3 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150328-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150328 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150328.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150328.1 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-03-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__SUSE-Linux-Enterprise-Server-11-SP3-Prio-v206\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-10-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__SUSE-Linux-Enterprise-Server-11-SP3-SAP-CAL-v103\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.  Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-08-07T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__SUSE-Linux-Enterprise-Server-11-SP3-SAP-CAL-v108\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.  Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-10-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__SUSE-Linux-Enterprise-Server-11-SP3-v206\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-10-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__openSUSE-13.1-v105\r\n Linux\r\n openSUSE 13.1 brings updated desktop environments and software, lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at [http://susestudio.com|http://susestudio.com]\r\n openSUSE 13.1\r\n 2014-10-06T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles-11-sp3-azure-guest-priority.x86-64-2.0.9-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 11 SP3 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles-11-sp3-azure-guest.x86-64-2.0.9-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles-11-sp3-sap-cal-azure-guest.x86-64-1.0.11-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest-priority.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server 12 with PRIORITY support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium image with PRIORITY support includes updates, patches, and support 24x7 through web, email, chat and phone, from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2014-10-23T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__sles12-azure-guest.x86-64-0.4.3-build1.1\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 12\r\n 2014-10-23T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141029-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-10-30T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.   Customization of images can be done at [http://susestudio.com|http://susestudio.com].\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141029-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-10-30T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value.  Customization of images can be done at [http://susestudio.com|http://susestudio.com]. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2014-11-06T00:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141029-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-10-30T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20141105-x86-64\r\n Linux\r\n http://www.novell.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2014-11-06T00:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-1-20-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on July 18, 2015. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n SharePoint Server 2013 Trial\r\n 2015-01-20T08:00:00Z\r\n false\r\n Large\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2012SP1-CU4-11.0.3368.0-Enterprise-ENU-Win2012\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2012 SP1 Enterprise on Windows Server 2012\r\n 2013-06-26T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2012SP1-CU4-11.0.3368.0-Standard-ENU-Win2012\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2012 SP1 Standard on Windows Server 2012\r\n 2013-07-15T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2012SP1-Enterprise-CY13SU04-SQL2012-SP1-11.0.3350.0-Win2012\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2012 SP1 Enterprise on Windows Server 2012\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2012SP1-Standard-CY13SU04-SQL2012-SP1-11.0.3350.0-Win2012\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server 2012 components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2012 SP1 Standard on Windows Server 2012\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP1-11.0.3430.0-Enterprise-ENU-Win2012-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]. All SQL Server 2012 SP1 images will be removed on 10/2/2014. Please use SQL Server 2012 SP2 images instead.\r\n SQL Server 2012 SP1 Enterprise on Windows Server 2012\r\n 2014-05-29T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP1-11.0.3430.0-Standard-ENU-Win2012-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]. All SQL Server 2012 SP1 images will be removed on 10/2/2014. Please use SQL Server 2012 SP2 images instead.\r\n SQL Server 2012 SP1 Standard on Windows Server 2012\r\n 2014-05-29T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP1-11.0.3430.0-Web-ENU-Win2012-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]. All SQL Server 2012 SP1 images will be removed on 10/2/2014. Please use SQL Server 2012 SP2 images instead.\r\n SQL Server 2012 SP1 Web on Windows Server 2012\r\n 2014-05-29T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP1-11.0.3446.0-DataWarehousing-ENU-Win2012-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This Enterprise Edition image uses Fast Track optimization rated for 400 GB data warehousing workloads. After the portal deployment completes, you need to attach the disks. To do this, connect to the VM and then follow the on-screen instructions. Before using the VM, review the recommendations [here|http://go.microsoft.com/fwlink/p/?LinkId=320441|_blank]. For best performance, we recommend the A6 VM size. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP1 for Data Warehousing on Windows Server 2012\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n A6\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012SP1-CU5-11.0.3373.0-DataWarehousing-ENU-WS2012\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This Enterprise Edition image uses Fast Track optimization rated for 400 GB data warehousing workloads. After the portal deployment completes, you need to attach the disks. To do this, connect to the VM and then follow the on-screen instructions. Before using the VM, review the recommendations at http://go.microsoft.com/fwlink/p/?LinkId=320441. For best performance, we recommend the A6 VM size. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2012 SP1 for Data Warehousing on Windows Server 2012\r\n false\r\n 2013-09-30T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n A6\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012SP1-CU5-11.0.3373.0-DataWarehousing-ENU-WS2012-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This Enterprise Edition image uses Fast Track optimization rated for 400 GB data warehousing workloads. After the portal deployment completes, you need to attach the disks. To do this, connect to the VM and then follow the on-screen instructions. Before using the VM, review the recommendations [here|http://go.microsoft.com/fwlink/p/?LinkId=320441|_blank]. For best performance, we recommend the A6 VM size. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP1 for Data Warehousing on Windows Server 2012\r\n false\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n A6\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012SP1-CU5-11.0.3373.0-DataWarehousing-ENU-WS2012-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This Enterprise Edition image uses Fast Track optimization rated for 400 GB data warehousing workloads. After the portal deployment completes, you need to attach the disks. To do this, connect to the VM and then follow the on-screen instructions. Before using the VM, review the recommendations [here|http://go.microsoft.com/fwlink/p/?LinkId=320441|_blank]. For best performance, we recommend the A6 VM size. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP1 for Data Warehousing on Windows Server 2012\r\n false\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n A6\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012SP1-CU5-11.0.3373.0-Enterprise-ENU-Win2012\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2012 SP1 Enterprise on Windows Server 2012\r\n 2013-08-06T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012SP1-CU5-11.0.3373.0-Enterprise-ENU-Win2012-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2012 SP1 Enterprise on Windows Server 2012\r\n 2013-10-21T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012SP1-CU5-11.0.3373.0-Enterprise-ENU-Win2012-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP1 Enterprise on Windows Server 2012\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012SP1-CU5-11.0.3373.0-Standard-ENU-Win2012-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2012 SP1 Standard on Windows Server 2012\r\n 2013-10-21T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012SP1-CU5-11.0.3373.0-Standard-ENU-Win2012-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP1 Standard on Windows Server 2012\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140417-1824\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-04-17T19:21:27.3838648Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20140403-2126\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-04-03T22:17:28.0548753Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Medium\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "561928" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9e37252e8d3b8105a2a4f8d48a038619" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:15 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/9e37252e8d3b8105a2a4f8d48a038619", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zLzllMzcyNTJlOGQzYjgxMDVhMmE0ZjhkNDhhMDM4NjE5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 9e37252e-8d3b-8105-a2a4-f8d48a038619\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "20d10347b2598effb500ed46dc948273" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:16 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/vmimages", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.02-os-2015-03-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-03T11:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.03-os-2015-03-10\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-10T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.05-os-2015-03-14\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-14T16:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.02-os-2015-03-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.02-datadisk-0-2015-03-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-03T11:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.03-os-2015-03-10\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.03-datadisk-0-2015-03-10\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-10T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.05-os-2015-03-14\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.05-datadisk-0-2015-03-14\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-14T16:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.02-os-2015-03-04\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-03T11:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.03-os-2015-03-10\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-10T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.05-os-2015-03-14\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.05-datadisk-0-2015-03-14\r\n None\r\n 0\r\n 605\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-14T16:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "83943" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "55bb6b565efb80229cb32ae095425cc3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:16 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/vmimages", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy92bWltYWdlcw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.02-os-2015-03-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-03T11:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.03-os-2015-03-10\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-10T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.05-os-2015-03-14\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-14T16:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.02-os-2015-03-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.02-datadisk-0-2015-03-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-03T11:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.03-os-2015-03-10\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.03-datadisk-0-2015-03-10\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-10T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.05-os-2015-03-14\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.05-datadisk-0-2015-03-14\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-14T16:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.02-os-2015-03-04\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-03T11:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.03-os-2015-03-10\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-10T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.05-os-2015-03-14\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.05-datadisk-0-2015-03-14\r\n None\r\n 0\r\n 605\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-14T16:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "83943" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "c66282c185a08330a1bfd46d2454eb75" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:53 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/55bb6b565efb80229cb32ae095425cc3", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zLzU1YmI2YjU2NWVmYjgwMjI5Y2IzMmFlMDk1NDI1Y2Mz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 55bb6b56-5efb-8022-9cb3-2ae095425cc3\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "667550e64d258409898dcf8fbe98cf7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:17 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/storageservices", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk9267\r\n \r\n \r\n South Central US\r\n Standard_GRS\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "353" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "41c9c7ddb78a892ea58d73e8baf281a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:19 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/43bd64dc-0ca5-43ed-9092-772e3675cfd0/storage/onesdk9267" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/41c9c7ddb78a892ea58d73e8baf281a9", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zLzQxYzljN2RkYjc4YTg5MmVhNThkNzNlOGJhZjI4MWE5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 41c9c7dd-b78a-892e-a58d-73e8baf281a9\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "15eb6c52d1b88136aa6dcf37d4ecff7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:19 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/41c9c7ddb78a892ea58d73e8baf281a9", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zLzQxYzljN2RkYjc4YTg5MmVhNThkNzNlOGJhZjI4MWE5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n 41c9c7dd-b78a-892e-a58d-73e8baf281a9\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "123c275025a08ef3a45bd73152e0e6eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:50 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk8617\r\n \r\n South Central US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "212" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4bc47e32d1c4846dbbbb4840213ce4b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:51 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/43bd64dc-0ca5-43ed-9092-772e3675cfd0/compute/onesdk8617" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/4bc47e32d1c4846dbbbb4840213ce4b7", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zLzRiYzQ3ZTMyZDFjNDg0NmRiYmJiNDg0MDIxM2NlNGI3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 4bc47e32-d1c4-846d-bbbb-4840213ce4b7\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "9bcddac8b42a85bd927d804eca689752" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:51 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617/deploymentslots/Production", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4NjE3L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n ResourceNotFound\r\n No deployments were found.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "08affe778813820aad323686aeee4cd6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:51 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617/deploymentslots/Production", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4NjE3L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8617\r\n Production\r\n 42ea8d4651704824b44fc2543d13b55c\r\n Running\r\n \r\n http://onesdk8617.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJ2bTEiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n vm1\r\n vm1\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.72.238.127\r\n \r\n \r\n PowerShell\r\n 104.210.194.224\r\n 49697\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.210.194.224\r\n 50139\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-03-30T22:27:23Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role vm1.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n vm1\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49697\r\n tcp\r\n 104.210.194.224\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 50139\r\n tcp\r\n 104.210.194.224\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8617-vm1-0-201503302227020372\r\n https://onesdk9267.blob.core.windows.net/vhds/onesdk8617-vm1-2015-3-31-7-26-57-133-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00693F08A1BA2B071E955685ECD3B04B4EA766E0\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 0001-01-01T00:00:00Z\r\n 9999-12-31T23:59:59Z\r\n \r\n \r\n \r\n
104.210.194.224
\r\n true\r\n onesdk8617ContractContract\r\n
\r\n
\r\n onesdk8617.j1.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "3987" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "b3f3cdcd8c6d88fbbb3f507fabc8cb52" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:27:30 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617/deploymentslots/Production", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4NjE3L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n onesdk8617\r\n Production\r\n 42ea8d4651704824b44fc2543d13b55c\r\n Running\r\n \r\n http://onesdk8617.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJ2bTEiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n vm1\r\n vm1\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.72.238.127\r\n \r\n \r\n PowerShell\r\n 104.210.194.224\r\n 49697\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.210.194.224\r\n 50139\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-03-30T22:27:23Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role vm1.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n vm1\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49697\r\n tcp\r\n 104.210.194.224\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 50139\r\n tcp\r\n 104.210.194.224\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8617-vm1-0-201503302227020372\r\n https://onesdk9267.blob.core.windows.net/vhds/onesdk8617-vm1-2015-3-31-7-26-57-133-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00693F08A1BA2B071E955685ECD3B04B4EA766E0\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 0001-01-01T00:00:00Z\r\n 9999-12-31T23:59:59Z\r\n \r\n \r\n \r\n
104.210.194.224
\r\n true\r\n onesdk8617ContractContract\r\n
\r\n
\r\n onesdk8617.j1.internal.cloudapp.net\r\n \r\n
", + "ResponseHeaders": { + "Content-Length": [ + "3987" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "5c523b9e3f07881694baa0cac6f8d023" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:27:31 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/images/03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9pbWFnZXMvMDNmNTVkZTc5N2Y1NDZhMWIyOWQxYjhkNjZiZTY4N2FfX1RlYW0tRm91bmRhdGlvbi1TZXJ2ZXItMjAxMy1VcGRhdGU0LVdTMjAxMlIy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n", + "ResponseHeaders": { + "Content-Length": [ + "1824" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "71706c728a128fea8abb1f518331c8d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:52 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/storageservices/onesdk9267", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrOTI2Nw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/storageservices/onesdk9267\r\n onesdk9267\r\n \r\n \r\n South Central US\r\n \r\n Created\r\n \r\n https://onesdk9267.blob.core.windows.net/\r\n https://onesdk9267.queue.core.windows.net/\r\n https://onesdk9267.table.core.windows.net/\r\n \r\n South Central US\r\n Available\r\n North Central US\r\n Available\r\n 2015-03-30T22:26:19Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-SouthCentralUS\r\n \r\n \r\n ResourceLocation\r\n South Central US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1296" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "aa7544ae0a388f8f99b83a2d33bfc97c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:53 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/storageservices/onesdk9267/keys", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvb25lc2RrOTI2Ny9rZXlz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/storageservices/onesdk9267\r\n \r\n 4tiV0SUd8QFhgvOHqKjzIQryenrZFB4UoZaUssS52T7hpn7mPuj6//7hDEl7c4/m1sNIkjK31DzKsIiFxfilSg==\r\n YaSCtyVECcmVN0lv5NPPnW2WQ6KL10BISz9YYYNNQ3qeV1rb5lCYLnDt+63qIXtQEA55IPjBdd0piuC0t4B9Cg==\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "2260be86d6ea8c698a467431c7c92697" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:54 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/operations/isavailable/onesdk8617", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL29uZXNkazg2MTc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "242" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4cb1b7dc18f08893ba60053d20d7f3f4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:54 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/resourceextensions/Microsoft.Compute/BGInfo", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9yZXNvdXJjZWV4dGVuc2lvbnMvTWljcm9zb2Z0LkNvbXB1dGUvQkdJbmZv", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.0.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n \r\n Microsoft.Compute\r\n BGInfo\r\n 1.1\r\n \r\n Windows Azure BGInfo Extension for IaaS\r\n \r\n \r\n true\r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4e2e854c43cd8400a4f674a20089c566" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:56 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617/deployments", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4NjE3L2RlcGxveW1lbnRz", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk8617\r\n Production\r\n \r\n \r\n \r\n vm1\r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n tcp\r\n \r\n \r\n 5986\r\n PowerShell\r\n tcp\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WindowsProvisioningConfiguration\r\n vm1\r\n p@ssw0rd\r\n false\r\n true\r\n \r\n \r\n \r\n \r\n Https\r\n \r\n \r\n \r\n pstestuser\r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n \r\n \r\n \r\n \r\n https://onesdk9267.blob.core.windows.net/vhds/onesdk8617-vm1-2015-3-31-7-26-57-133-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n \r\n true\r\n \r\n \r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "2460" + ], + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "41fa7c230f3d841d95f6bd7ad8a62391" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:58 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/41fa7c230f3d841d95f6bd7ad8a62391", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zLzQxZmE3YzIzMGYzZDg0MWQ5NWY2YmQ3YWQ4YTYyMzkx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n 41fa7c23-0f3d-841d-95f6-bd7ad8a62391\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "bd0981442d398f1880a87a58ad73d7f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:26:58 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/41fa7c230f3d841d95f6bd7ad8a62391", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zLzQxZmE3YzIzMGYzZDg0MWQ5NWY2YmQ3YWQ4YTYyMzkx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n 41fa7c23-0f3d-841d-95f6-bd7ad8a62391\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "dbccaacd3dcc854fa2f0aba60d7a762e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:27:28 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/b3f3cdcd8c6d88fbbb3f507fabc8cb52", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zL2IzZjNjZGNkOGM2ZDg4ZmJiYjNmNTA3ZmFiYzhjYjUy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n b3f3cdcd-8c6d-88fb-bb3f-507fabc8cb52\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "f578e8c164168f63bce40aaf07a42795" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:27:30 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617?embed-detail=true", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4NjE3P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617\r\n onesdk8617\r\n \r\n \r\n South Central US\r\n \r\n Created\r\n 0001-01-01T00:00:00Z\r\n 9999-12-31T23:59:59Z\r\n \r\n \r\n ResourceGroup\r\n onesdk8617\r\n \r\n \r\n ResourceLocation\r\n South Central US\r\n \r\n \r\n \r\n \r\n \r\n onesdk8617\r\n Production\r\n 42ea8d4651704824b44fc2543d13b55c\r\n Running\r\n \r\n http://onesdk8617.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJ2bTEiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n vm1\r\n vm1\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.72.238.127\r\n \r\n \r\n PowerShell\r\n 104.210.194.224\r\n 49697\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.210.194.224\r\n 50139\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-03-30T22:27:23Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role vm1.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n vm1\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49697\r\n tcp\r\n 104.210.194.224\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 50139\r\n tcp\r\n 104.210.194.224\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8617-vm1-0-201503302227020372\r\n https://onesdk9267.blob.core.windows.net/vhds/onesdk8617-vm1-2015-3-31-7-26-57-133-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00693F08A1BA2B071E955685ECD3B04B4EA766E0\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 0001-01-01T00:00:00Z\r\n 9999-12-31T23:59:59Z\r\n \r\n \r\n \r\n
104.210.194.224
\r\n true\r\n onesdk8617ContractContract\r\n
\r\n
\r\n onesdk8617.j1.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 00693F08A1BA2B071E955685ECD3B04B4EA766E0\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4811" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "e546dd4f444280f08ed4d9ded41afe63" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:27:31 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617?embed-detail=true", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4NjE3P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617\r\n onesdk8617\r\n \r\n \r\n South Central US\r\n \r\n Created\r\n 0001-01-01T00:00:00Z\r\n 9999-12-31T23:59:59Z\r\n \r\n \r\n ResourceGroup\r\n onesdk8617\r\n \r\n \r\n ResourceLocation\r\n South Central US\r\n \r\n \r\n \r\n \r\n \r\n onesdk8617\r\n Production\r\n 42ea8d4651704824b44fc2543d13b55c\r\n Running\r\n \r\n http://onesdk8617.cloudapp.net/\r\n PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPg0KICA8Um9sZSBuYW1lPSJ2bTEiPg0KICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+DQogIDwvUm9sZT4NCjwvU2VydmljZUNvbmZpZ3VyYXRpb24+\r\n \r\n \r\n vm1\r\n vm1\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.72.238.127\r\n \r\n \r\n PowerShell\r\n 104.210.194.224\r\n 49697\r\n 5986\r\n tcp\r\n \r\n \r\n RemoteDesktop\r\n 104.210.194.224\r\n 50139\r\n 3389\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n 1.0\r\n 2015-03-30T22:27:23Z\r\n Unknown\r\n NotReady\r\n \r\n en-US\r\n Status not available for role vm1.\r\n \r\n \r\n \r\n \r\n 1\r\n \r\n \r\n vm1\r\n \r\n PersistentVMRole\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 5986\r\n PowerShell\r\n 49697\r\n tcp\r\n 104.210.194.224\r\n false\r\n \r\n \r\n 3389\r\n RemoteDesktop\r\n 50139\r\n tcp\r\n 104.210.194.224\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n BGInfo\r\n Microsoft.Compute\r\n BGInfo\r\n 1.*\r\n \r\n Enable\r\n \r\n \r\n \r\n \r\n ReadWrite\r\n onesdk8617-vm1-0-201503302227020372\r\n https://onesdk9267.blob.core.windows.net/vhds/onesdk8617-vm1-2015-3-31-7-26-57-133-0.vhd\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n Standard\r\n \r\n Small\r\n 00693F08A1BA2B071E955685ECD3B04B4EA766E0\r\n true\r\n \r\n \r\n \r\n false\r\n false\r\n 0001-01-01T00:00:00Z\r\n 9999-12-31T23:59:59Z\r\n \r\n \r\n \r\n
104.210.194.224
\r\n true\r\n onesdk8617ContractContract\r\n
\r\n
\r\n onesdk8617.j1.internal.cloudapp.net\r\n \r\n
\r\n
\r\n 00693F08A1BA2B071E955685ECD3B04B4EA766E0\r\n
", + "ResponseHeaders": { + "Content-Length": [ + "4811" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "0a0c7704f641897c9454f6c7e504bc11" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:27:31 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617?embed-detail=true", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4NjE3P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617\r\n onesdk8617\r\n \r\n \r\n South Central US\r\n \r\n Created\r\n 0001-01-01T00:00:00Z\r\n 9999-12-31T23:59:59Z\r\n \r\n \r\n ResourceGroup\r\n onesdk8617\r\n \r\n \r\n ResourceLocation\r\n South Central US\r\n \r\n \r\n \r\n \r\n 00693F08A1BA2B071E955685ECD3B04B4EA766E0\r\n", + "ResponseHeaders": { + "Content-Length": [ + "913" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "957d181d45ec8983b6a1826d570d0310" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:28:01 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617/deployments/onesdk8617", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4NjE3L2RlcGxveW1lbnRzL29uZXNkazg2MTc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "d3491f46fe0880f1b9603783dd1d6825" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:27:31 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/d3491f46fe0880f1b9603783dd1d6825", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zL2QzNDkxZjQ2ZmUwODgwZjFiOTYwMzc4M2RkMWQ2ODI1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n d3491f46-fe08-80f1-b960-3783dd1d6825\r\n InProgress\r\n", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "bfca7e84cb4c8d39afb6c84ef93c3dc3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:27:32 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/operations/d3491f46fe0880f1b9603783dd1d6825", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9vcGVyYXRpb25zL2QzNDkxZjQ2ZmUwODgwZjFiOTYwMzc4M2RkMWQ2ODI1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "\r\n d3491f46-fe08-80f1-b960-3783dd1d6825\r\n Succeeded\r\n 200\r\n", + "ResponseHeaders": { + "Content-Length": [ + "232" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "e601f31bd24a8bbc9c00a1fac453fc02" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:28:01 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/43bd64dc-0ca5-43ed-9092-772e3675cfd0/services/hostedservices/onesdk8617", + "EncodedRequestUri": "LzQzYmQ2NGRjLTBjYTUtNDNlZC05MDkyLTc3MmUzNjc1Y2ZkMC9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs4NjE3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/9.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "4b33a91434a6831190808855c7f68200" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 30 Mar 2015 22:28:03 GMT" + ], + "Server": [ + "1.0.6198.208", + "(rd_rdfe_stable.150324-1051)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureVM": [ + "onesdk9267", + "onesdk8617" + ] + }, + "Variables": { + "SubscriptionId": "43bd64dc-0ca5-43ed-9092-772e3675cfd0" + } +} \ No newline at end of file From 0ba136c5a4d2c171f2946a84f224ce8f51224365 Mon Sep 17 00:00:00 2001 From: siddheshwar-more Date: Fri, 3 Apr 2015 12:53:58 +0000 Subject: [PATCH 05/40] Added changes to support bootstrap options for chef extension --- .../Chef/SetAzureVMChefExtension.cs | 43 ++++++++++++++++--- .../VirtualMachineChefExtensionCmdletBase.cs | 1 + ...re.Commands.ServiceManagement.dll-Help.xml | 40 ++++++++++++++++- 3 files changed, 75 insertions(+), 9 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/SetAzureVMChefExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/SetAzureVMChefExtension.cs index f3ad201b4a80..2a8e480ebb58 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/SetAzureVMChefExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/SetAzureVMChefExtension.cs @@ -53,6 +53,12 @@ public class SetAzureVMChefExtensionCommand : VirtualMachineChefExtensionCmdletB [ValidateNotNullOrEmpty] public string ClientRb { get; set; } + [Parameter( + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Chef Client bootstrap options in JSON format.")] + [ValidateNotNullOrEmpty] + public string BootstrapOptions { get; set; } + [Parameter( ValueFromPipelineByPropertyName = true, HelpMessage = "The Chef Server Node Runlist.")] @@ -152,6 +158,7 @@ private void SetPublicConfig() bool IsChefServerUrlEmpty = string.IsNullOrEmpty(this.ChefServerUrl); bool IsValidationClientNameEmpty = string.IsNullOrEmpty(this.ValidationClientName); bool IsRunListEmpty = string.IsNullOrEmpty(this.RunList); + bool IsBootstrapOptionsEmpty = string.IsNullOrEmpty(this.BootstrapOptions); string AutoUpdateChefClient = this.AutoUpdateChefClient.IsPresent ? "true" : "false"; //Cases handled: @@ -204,17 +211,39 @@ private void SetPublicConfig() if (IsRunListEmpty) { - this.PublicConfiguration = string.Format("{{{0},{1}}}", - string.Format(AutoUpdateTemplate, AutoUpdateChefClient), - string.Format(ClientRbTemplate, ClientConfig)); + if (IsBootstrapOptionsEmpty) + { + this.PublicConfiguration = string.Format("{{{0},{1}}}", + string.Format(AutoUpdateTemplate, AutoUpdateChefClient), + string.Format(ClientRbTemplate, ClientConfig)); + } + else + { + this.PublicConfiguration = string.Format("{{{0},{1},{2}}}", + string.Format(AutoUpdateTemplate, AutoUpdateChefClient), + string.Format(ClientRbTemplate, ClientConfig), + string.Format(BootStrapOptionsTemplate, this.BootstrapOptions)); + } } else { - this.PublicConfiguration = string.Format("{{{0},{1},{2}}}", - string.Format(AutoUpdateTemplate, AutoUpdateChefClient), - string.Format(ClientRbTemplate, ClientConfig), - string.Format(RunListTemplate, this.RunList)); + if (IsBootstrapOptionsEmpty) + { + this.PublicConfiguration = string.Format("{{{0},{1},{2}}}", + string.Format(AutoUpdateTemplate, AutoUpdateChefClient), + string.Format(ClientRbTemplate, ClientConfig), + string.Format(RunListTemplate, this.RunList)); + } + else + { + this.PublicConfiguration = string.Format("{{{0},{1},{2},{3}}", + string.Format(AutoUpdateTemplate, AutoUpdateChefClient), + string.Format(ClientRbTemplate, ClientConfig), + string.Format(RunListTemplate, this.RunList), + string.Format(BootStrapOptionsTemplate, this.BootstrapOptions)); + } } + } protected override void ValidateParameters() diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs index 3dcd2e58393d..479ab26b90f9 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs @@ -24,6 +24,7 @@ public class VirtualMachineChefExtensionCmdletBase : VirtualMachineExtensionCmdl protected const string PrivateConfigurationTemplate = "{{\"validation_key\":\"{0}\"}}"; protected const string AutoUpdateTemplate = "\"autoUpdateClient\":\"{0}\""; protected const string ClientRbTemplate = "\"client_rb\":\"{0}\""; + protected const string BootStrapOptionsTemplate = "\"bootstrap_options\":\"{0}\""; protected const string RunListTemplate = "\"runlist\": \"\\\"{0}\\\"\""; public VirtualMachineChefExtensionCmdletBase() diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml b/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml index 361b9947a695..695ee8aade39 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml @@ -33690,6 +33690,18 @@ PS C:\> Get-AzureVM -ServiceName "ContosoService03" -Name "Con + + BootstrapOptions + + Bootstrap Options in JSON Format + + BootstrapOptions + + String + + + + ValidationClientName @@ -33822,7 +33834,6 @@ PS C:\> Get-AzureVM -ServiceName "ContosoService03" -Name "Con - -------------------------- EXAMPLE 2 -------------------------- @@ -33830,6 +33841,31 @@ PS C:\> Get-AzureVM -ServiceName "ContosoService03" -Name "Con C:\PS> + + Set-AzureVMChefExtension -VM $vm -ValidationPem "C:\\myorg-validator.pem" -BootstrapOptions '{"chef_node_name":"your_node_name","chef_server_url":"https://api.opscode.com/organizations/some-org", "validation_client_name":"some-org-validator"}' -RunList "apache" -Windows; + + + Description + ----------- + This cmdlet adds the Chef extension to a windows VM. + When the VM comes up, it will be bootstrapped with Chef and have apache running on it, while bootstraping it will refer 'BootstrapOptions' specified in JSON format. + + + + + + + + + + + + + -------------------------- EXAMPLE 3 -------------------------- + + + C:\PS> + Set-AzureVMChefExtension -VM $vm -ValidationPem "C:\\myorg-validator.pem" -ChefServerUrl "http://ipaddress:port" -ValidationClientName "myorg-validator" -RunList "apache, git" -Windows; @@ -33851,7 +33887,7 @@ PS C:\> Get-AzureVM -ServiceName "ContosoService03" -Name "Con - -------------------------- EXAMPLE 3 -------------------------- + -------------------------- EXAMPLE 4 -------------------------- C:\PS> From 05837432b39b655eeaccf991e33c4b698d01e40b Mon Sep 17 00:00:00 2001 From: siddheshwar-more Date: Mon, 6 Apr 2015 13:01:47 +0000 Subject: [PATCH 06/40] Added changes to parse chef extension bootstrap option --- .../Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs index 479ab26b90f9..b4ac54333677 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs @@ -24,7 +24,7 @@ public class VirtualMachineChefExtensionCmdletBase : VirtualMachineExtensionCmdl protected const string PrivateConfigurationTemplate = "{{\"validation_key\":\"{0}\"}}"; protected const string AutoUpdateTemplate = "\"autoUpdateClient\":\"{0}\""; protected const string ClientRbTemplate = "\"client_rb\":\"{0}\""; - protected const string BootStrapOptionsTemplate = "\"bootstrap_options\":\"{0}\""; + protected const string BootStrapOptionsTemplate = "\"bootstrap_options\":{0}"; protected const string RunListTemplate = "\"runlist\": \"\\\"{0}\\\"\""; public VirtualMachineChefExtensionCmdletBase() From 1deb723ea0b98b0080d03ada0385efd8d4436d95 Mon Sep 17 00:00:00 2001 From: Pavel Pochobut Date: Wed, 29 Apr 2015 13:48:51 +0300 Subject: [PATCH 07/40] fixed Scenario Test for Set-AzureServiceDiagnosticsExtension cmdlet --- .../FunctionalTests/FunctionalTest.cs | 2 +- ...reServiceDiagnosticsExtensionCmdletInfo.cs | 13 ++--- .../FunctionalTests/ScenarioTest.cs | 51 +++++++++--------- .../ServiceManagementCmdletTestHelper.cs | 12 ++--- .../FunctionalTests/ServiceManagementTest.cs | 2 +- .../FunctionalTests/Utilities.cs | 20 +++---- .../Resources/HelloNoDiag.cscfg | 3 +- .../Resources/HelloNoDiag.cspkg | Bin 0 -> 1519854 bytes .../Resources/da.xml | 26 ++++++--- 9 files changed, 67 insertions(+), 62 deletions(-) create mode 100644 src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Resources/HelloNoDiag.cspkg diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/FunctionalTest.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/FunctionalTest.cs index dc94d83f5b06..c70998bd8e6d 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/FunctionalTest.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/FunctionalTest.cs @@ -1036,7 +1036,7 @@ private bool VerifyExtensionConfigDiag(ExtensionConfigurationInput resultConfig, Assert.AreEqual("PaaSDiagnostics", resultConfig.Type, "Type is not equal!"); Assert.AreEqual(storage, resultStorageAccount); - Assert.IsTrue(Utilities.CompareWadCfg(resultWadCfg, wadconfig)); + Utilities.CompareWadCfg(resultWadCfg, wadconfig); if (string.IsNullOrWhiteSpace(thumbprint)) { diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/SetAzureServiceDiagnosticsExtensionCmdletInfo.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/SetAzureServiceDiagnosticsExtensionCmdletInfo.cs index 0a478fab976e..dfe5839f3673 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/SetAzureServiceDiagnosticsExtensionCmdletInfo.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/SetAzureServiceDiagnosticsExtensionCmdletInfo.cs @@ -14,17 +14,18 @@ using System.Security.Cryptography.X509Certificates; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PowershellCore; +using Microsoft.WindowsAzure.Commands.Common.Storage; namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PaasCmdletInfo { public class SetAzureServiceDiagnosticsExtensionCmdletInfo : CmdletsInfo { - public SetAzureServiceDiagnosticsExtensionCmdletInfo(string service, string storage, string config, string[] roles, string slot) + public SetAzureServiceDiagnosticsExtensionCmdletInfo(string service, AzureStorageContext storageContext, string config, string[] roles, string slot) { this.cmdletName = Utilities.SetAzureServiceDiagnosticsExtensionCmdletName; this.cmdletParams.Add(new CmdletParam("ServiceName", service)); - this.cmdletParams.Add(new CmdletParam("StorageAccountName", storage)); + this.cmdletParams.Add(new CmdletParam("StorageContext", storageContext)); if (roles != null) { this.cmdletParams.Add(new CmdletParam("Role", roles)); @@ -35,14 +36,14 @@ public SetAzureServiceDiagnosticsExtensionCmdletInfo(string service, string stor } } - public SetAzureServiceDiagnosticsExtensionCmdletInfo(string service, string storage, X509Certificate2 cert, string config, string[] roles, string slot) - : this(service, storage, config, roles, slot) + public SetAzureServiceDiagnosticsExtensionCmdletInfo(string service, AzureStorageContext storageContext, X509Certificate2 cert, string config, string[] roles, string slot) + : this(service, storageContext, config, roles, slot) { this.cmdletParams.Add(new CmdletParam("X509Certificate", cert)); } - public SetAzureServiceDiagnosticsExtensionCmdletInfo(string service, string storage, string thumbprint, string algorithm, string config, string[] roles, string slot) - : this(service, storage, config, roles, slot) + public SetAzureServiceDiagnosticsExtensionCmdletInfo(string service, AzureStorageContext storageContext, string thumbprint, string algorithm, string config, string[] roles, string slot) + : this(service, storageContext, config, roles, slot) { this.cmdletParams.Add(new CmdletParam("CertificateThumbprint", thumbprint)); if (!string.IsNullOrEmpty(algorithm)) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ScenarioTest.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ScenarioTest.cs index 98f0fbe5bf4e..ee21cbc44092 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ScenarioTest.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ScenarioTest.cs @@ -32,6 +32,9 @@ using Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions; using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.ConfigDataInfo; +using Microsoft.WindowsAzure.Commands.Common.Storage; +using Microsoft.WindowsAzure.Storage.Auth; +using Microsoft.WindowsAzure.Storage; namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests { @@ -1026,41 +1029,39 @@ public void AzureServiceDiagnosticsExtensionTest() DeploymentInfoContext result; string storage = defaultAzureSubscription.CurrentStorageAccountName; - string daConfig = @".\da.xml"; + string daConfig = @"da.xml"; string defaultExtensionId = string.Format("Default-{0}-Production-Ext-0", Utilities.PaaSDiagnosticsExtensionName); - try - { - serviceName = Utilities.GetUniqueShortName(serviceNamePrefix); - vmPowershellCmdlets.NewAzureService(serviceName, serviceName, locationName); - Console.WriteLine("service, {0}, is created.", serviceName); + serviceName = Utilities.GetUniqueShortName(serviceNamePrefix); + vmPowershellCmdlets.NewAzureService(serviceName, serviceName, locationName); + Console.WriteLine("service, {0}, is created.", serviceName); - vmPowershellCmdlets.NewAzureDeployment(serviceName, packagePath1.FullName, configPath1.FullName, DeploymentSlotType.Production, deploymentLabel, deploymentName, false, false); + vmPowershellCmdlets.NewAzureDeployment(serviceName, packagePath1.FullName, configPath1.FullName, DeploymentSlotType.Production, deploymentLabel, deploymentName, false, false); - result = vmPowershellCmdlets.GetAzureDeployment(serviceName, DeploymentSlotType.Production); - pass = Utilities.PrintAndCompareDeployment(result, serviceName, deploymentName, deploymentLabel, DeploymentSlotType.Production, null, 2); - Console.WriteLine("successfully deployed the package"); + result = vmPowershellCmdlets.GetAzureDeployment(serviceName, DeploymentSlotType.Production); + pass = Utilities.PrintAndCompareDeployment(result, serviceName, deploymentName, deploymentLabel, DeploymentSlotType.Production, null, 2); + Console.WriteLine("successfully deployed the package"); - vmPowershellCmdlets.SetAzureServiceDiagnosticsExtension(serviceName, storage, daConfig, null, null); + string storageKey = vmPowershellCmdlets.GetAzureStorageAccountKey(storage).Primary; - DiagnosticExtensionContext resultContext = vmPowershellCmdlets.GetAzureServiceDiagnosticsExtension(serviceName)[0]; + StorageCredentials creds = new StorageCredentials(storage, storageKey); + CloudStorageAccount csa = new WindowsAzure.Storage.CloudStorageAccount(creds, true); + var storageContext = new AzureStorageContext(csa); - VerifyDiagExtContext(resultContext, "AllRoles", defaultExtensionId, storage, daConfig); + vmPowershellCmdlets.SetAzureServiceDiagnosticsExtension(serviceName, storageContext, daConfig, null, null); - vmPowershellCmdlets.RemoveAzureServiceDiagnosticsExtension(serviceName, true); + DiagnosticExtensionContext resultContext = vmPowershellCmdlets.GetAzureServiceDiagnosticsExtension(serviceName)[0]; - Assert.AreEqual(vmPowershellCmdlets.GetAzureServiceDiagnosticsExtension(serviceName).Count, 0); + VerifyDiagExtContext(resultContext, "AllRoles", defaultExtensionId, storage, daConfig); - vmPowershellCmdlets.RemoveAzureDeployment(serviceName, DeploymentSlotType.Production, true); + vmPowershellCmdlets.RemoveAzureServiceDiagnosticsExtension(serviceName, true); - pass &= Utilities.CheckRemove(vmPowershellCmdlets.GetAzureDeployment, serviceName, DeploymentSlotType.Production); - } - catch (Exception e) - { - pass = false; - Assert.Fail("Exception occurred: {0}", e.ToString()); - } + Assert.AreEqual(vmPowershellCmdlets.GetAzureServiceDiagnosticsExtension(serviceName).Count, 0); + + vmPowershellCmdlets.RemoveAzureDeployment(serviceName, DeploymentSlotType.Production, true); + + pass &= Utilities.CheckRemove(vmPowershellCmdlets.GetAzureDeployment, serviceName, DeploymentSlotType.Production); } #endregion @@ -1701,9 +1702,9 @@ private void VerifyDiagExtContext(DiagnosticExtensionContext resultContext, stri //Assert.AreEqual(storage, resultContext.StorageAccountName, "storage account name is not same"); XmlDocument doc = new XmlDocument(); - doc.Load("@./da.xml"); + doc.Load("da.xml"); string inner = Utilities.GetInnerXml(resultContext.WadCfg, "WadCfg"); - Assert.IsTrue(Utilities.CompareWadCfg(inner, doc), "xml is not same"); + Utilities.CompareWadCfg(inner, doc); } private void VerifyRDPExtContext(RemoteDesktopExtensionContext resultContext, string role, string extID, string userName, DateTime exp, string version = null) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs index c342cdbd4471..e74663989efc 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs @@ -1120,19 +1120,19 @@ public ExtensionConfigurationInput NewAzureServiceDiagnosticsExtensionConfig // Set-AzureServiceDiagnosticsExtension public ManagementOperationContext SetAzureServiceDiagnosticsExtension - (string service, string storage, string config = null, string[] roles = null, string slot = null) + (string service, AzureStorageContext storageContext, string config = null, string[] roles = null, string slot = null) { - return RunPSCmdletAndReturnFirst(new SetAzureServiceDiagnosticsExtensionCmdletInfo(service, storage, config, roles, slot)); + return RunPSCmdletAndReturnFirst(new SetAzureServiceDiagnosticsExtensionCmdletInfo(service, storageContext, config, roles, slot)); } - public ManagementOperationContext SetAzureServiceDiagnosticsExtension(string service, string storage, X509Certificate2 cert, string config = null, string[] roles = null, string slot = null) + public ManagementOperationContext SetAzureServiceDiagnosticsExtension(string service, AzureStorageContext storageContext, X509Certificate2 cert, string config = null, string[] roles = null, string slot = null) { - return RunPSCmdletAndReturnFirst(new SetAzureServiceDiagnosticsExtensionCmdletInfo(service, storage, cert, config, roles, slot)); + return RunPSCmdletAndReturnFirst(new SetAzureServiceDiagnosticsExtensionCmdletInfo(service, storageContext, cert, config, roles, slot)); } - public ManagementOperationContext SetAzureServiceDiagnosticsExtension(string service, string storage, string thumbprint, string algorithm = null, string config = null, string[] roles = null, string slot = null) + public ManagementOperationContext SetAzureServiceDiagnosticsExtension(string service, AzureStorageContext storageContext, string thumbprint, string algorithm = null, string config = null, string[] roles = null, string slot = null) { - return RunPSCmdletAndReturnFirst(new SetAzureServiceDiagnosticsExtensionCmdletInfo(service, storage, thumbprint, algorithm, config, roles, slot)); + return RunPSCmdletAndReturnFirst(new SetAzureServiceDiagnosticsExtensionCmdletInfo(service, storageContext, thumbprint, algorithm, config, roles, slot)); } // Get-AzureServiceDiagnosticsExtension diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs index da956f65e765..a36308e3ac6b 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs @@ -112,7 +112,7 @@ public static void SetDefaultStorage() } else { - Console.WriteLine("Unable to get the default storege account"); + Console.WriteLine("Unable to get the default storage account"); } } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/Utilities.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/Utilities.cs index 0dfe5b9a8f33..14f95114aa7e 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/Utilities.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/Utilities.cs @@ -786,24 +786,16 @@ public static string GetInnerXml(string xmlString, string tag) return xml.GetElementsByTagName(tag)[0].InnerXml; } - public static bool CompareWadCfg(string wadcfg, XmlDocument daconfig) + public static void CompareWadCfg(string wadcfg, XmlDocument daconfig) { - try + if (string.IsNullOrWhiteSpace(wadcfg)) { - if (string.IsNullOrWhiteSpace(wadcfg)) - { - Assert.IsNull(wadcfg); - } - else - { - string innerXml = daconfig.InnerXml; - Assert.AreEqual(Utilities.FindSubstring(wadcfg, '<', 2), Utilities.FindSubstring(innerXml, '<', 2)); - } - return true; + Assert.IsNull(wadcfg); } - catch + else { - return false; + string innerXml = daconfig.InnerXml; + StringAssert.Contains(Utilities.FindSubstring(innerXml, '<', 2), Utilities.FindSubstring(wadcfg, '<', 2)); } } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Resources/HelloNoDiag.cscfg b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Resources/HelloNoDiag.cscfg index d20303b264fb..1ef08edc2459 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Resources/HelloNoDiag.cscfg +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Resources/HelloNoDiag.cscfg @@ -8,8 +8,9 @@ ********************************************************************************************** --> - + + \ No newline at end of file diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Resources/HelloNoDiag.cspkg b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Resources/HelloNoDiag.cspkg new file mode 100644 index 0000000000000000000000000000000000000000..b4dc1981ab006c4d6b925614bcd8a4e503e4266c GIT binary patch literal 1519854 zcmb4q1CS@rwr1P5ZQHhO>({nz%}krqwrx&h+O}=m-u~YgZ{ObCh#RpLkteevPkwnS zPvkjS6<;aIf`Y*S{d4{B&6FTkR2(^i!UX!KumIr!X#z}C9Bcv1hAbT19BkaoEcDE# zT&DDF04^4KZZl?XdUG>QP7@PO6HYTub_P=y7f+&mEFh{}w0|M~-$LnoE;JwzAgF)M z<(3fgZcPaU^dJiag!ny|sI7yW8H1a#^EZy2vHgDn`qQahvo?rA|8C#&MST54MYhZ5 zD+S`}fJ)b3sR4{^iLJ30>HE zHiU;ar~Nba?PL`o|1ku)+n3WV>*kuZO7QV1>y-Xl#{Y2x{8jsY=aEm-*xUIwC|8`iKbD+^#X+jv?8rR*hSQz2akC*rVHFlf0NJd^K zWf7bL4RHh&V{WBjPAm)(^_M&7fEb!MT$XMG6)nV{h&-E&EDZn^W#RNlTlLjO@#QEV zOWAOIuROWdH@V`3E#hB7pa^b$#RjdhE> z&%l>UjhzUF7XmVcYFPHdHuA)d9einZ=0pTNtRRK{BLQfVc^DHqEeH?PF*80+TPtk< z*wYhe2$e5dHJ=OyO>{OY^86W|UqJE3ls|Uy6lJ1!6@60)*I@Oraiy9yn@9TbKeG51f4;I~)xF{3cU$CHFMd_(tzN0+Ex{ zPt~Z)W=4*UNj&C+!uZ2d(kZ(@sxcJ~+UaL77Bm)K0U#=j4U{aQa5-WPIPFuKTyWym zPhUCPo9}rs5RB3!R&98cOIV6zAikAMIHo@iQ#nCy4^B1#sg00g7Yy2qNVbwp1cp>h zWN^5~W#^7=Yw5sL?y_cr>yH}?8DYLJkt~*^GgTPBc|R3FEmasY8AR@|OfZ=$$gPhw z26?cN*svoD8jv&3rS9OXb@`Re0sGRf>&L7V+4i&samk>V&@7okJQ=VQ9Dq?82|NY` zn+iBP5G%+SMOF%_4No+mPRNA~2KF77$B%i&gWWrEqLBBmKt-E=L5Uts1D`@2+kg~b zkZK$S)X%?`LE$W;`9evSFhhX!d~y_WHG{y;o*5QeVI0R{*KJ&gx86*_f)YO(#f7qN z1x7><2RHD0(kjt#5-(&-0Nyko<95`r6Bw})%YZRd4cNX_Ym_Np2oSImURZ(R&weG9 zx4i1D^rwth=keHO;E*w_NfRUsC}9fE7-Hp=1E=tQVtP_V(eOc}edor0U<_?+ePSgd zq9`J+aLgAAeD1@e72w%3!v@gd+23OPalm0LV+CRpP-v3Zbdq%>vJF(2EJ_kaM5NtF zU;l{p`kq??>c8+$h^;=>0MI@j&ex^fg&(T!}*q!&@rZfG?8_o{W!sEv_9rz zLktx*nIgJdI~g=^DUxQ2Ji3Pln-^{Oz{P8NcOdNed~H1@evDi(<>3G%b|Gl|5X)asDk8$y$>{-82nK8~3HU~ElzDiea-y?bkkT;ZcA61hFKx21xE0&}s`Ns%zg zsX?5FS@^)o8uNw`>oDudP_cUB*(hX5dJCxbh#`BI2%cNcflh8X&jZZ}p?>9~wecw+ zvy4ttu`xk_11Um9Vjw}?c=oFhEQhzkht7i*5X7cLi0XXyMJk}^m-(}6Z3k` zJm8)O_7mLoNhWL~SD0CblCcoy?S_y_iw!gHYsG;?Mw5tw z6zzb0cJw_?W6K;8C9ISpoC%l`pdb-XDb4rO2l)mok|Qx!4384Y&%#M;0vRy{Ncbn% zUj&tHri9NF1;IW90-O(iULkcL2xw&^WN=I`Fh!_Nf?)`#LIg=sArUkjBs<)4Vq{ML zR`fXWz+m73;6cBtbwL26;qeQoyO1CeOtM~U6boi_;4gFSK$Y@P;iOY#Dk6iggdWTE z9cr{GIL2wL-B&autN!bN(zB`hkbo!+pdiHXyxn9;F9>lmS(C_nV#r*xo&v5zPwZqO zK3U=^B&jHLui;vtq5;XyIm5WVfM_**6AWSJS4B0BmS-1W%mG8RMl#VcK6z4-NYd0e zr*z3Q%rt}ryT~)6$O))G2}fFz3ewwX5&Sml(G#rbTe6oGT!G1E-?R%C>L)Lb!nIq~ zn!~BB7OB4F)0&dp(`j^C+0$IfidR78X#3lq=<3tOSGOKQ-}Rc%=b~OBdH&2Y%3kVm zcO)N|vKrwm;b!>*>ui_W^(uI`yVdnKZ z9vufiPtkYWn_D_)!*u~SLsw%h9-m$BwmkQDYw%y4oHd+X0Z*{6q~09|K@V5sm*+Ai zdXqQ6Th;Z!vdg)#{M}qvVK_r?v_tJJGzsJCV(^g>wXU`C4mdkHcb&bWSL!--f#nHy zyyUhKld|t5R)t2YoK@Jnq;yfqo*8*XfN<5!AMI0j{h-MnM+_7{mlL~TTxvGQZJ%f+ zDDmDe%Uosg*W)q0C(e)FNLtoVYu7uL0sc&CsWxrdL&Vsw@k3&Vg8sR z*r@I`vrz5vcW;}TjuHy?Anrt{a>i5Y^=BOur$!Qvb;52BL9*C8sm0 zhP=_w9g>)~p+7QrBrEOi=A4X=@$=ve%hg#V{4NTx8ihNlWy1rj1A|mw@^#%*K>FYYyJRpdGA&F7t20Covn_zwZ^lvA_J z%Qtyv*W9W%(^N&4fQ}_t=!ivS7pz$N*o$7d=v?Pgc8!&Rq!hAww#-A{>Wvy}ah4j< zce(|WKDm8_pM&VM?e>dR*uVqWkaG&JWNgv0M~lmCMOUxF4hUy)n0S?|B?#Q*_Xy=r z8g0qy6V=&81aInWj7g0GWO6!-n}Z9?M`;>ZBI2UIDjov*c9M)GKQF3e%}OJtH4;9!6&UZXJ&! zKGAK&8s0Cjv6QXVhOMGHJL{y&FEEI}Zbrec*For%t=r(OR6|63OEKCI0nfKTDK%X}ARzCxon~u0QeL-s9ZN7d?&ZIQt%c&n*PswV zJHwHWbL}(m4gi=zWmkC7c!&u%^O428LZJ0{u+kcRk!;YS&X+xv)Q3zA#aa}xwi%mh`yu7tmkfOVz;Mz{rcq~U6Nmxz{WCJ|3 zwG;~V9B?tzqIlhW92)#d-4Kux4I1QiYZnCkEwbn}N$R;VGK&MC_?7-~Sqod6`64e= z2G1l3ajkHZ_*7lF*FcZqBQeHFSgD-hLVeS-u*r=kiIwJE(uOq(klcG;B`3N#q?7h| z8f1iFG3stcPkq7B*`|$6%hLJm?%edA^+y9CUTr?YyRsyhS6ouHP1JX8YyJZZ|Ez_D za!)TSL6#b^r$tj~6B_Isu*2eQ;i9a$jwNq3zsWq&90R)|AnPS8y^;@w#mMF16h3g5 z-NbxeH9k-*;9wVItU2JyO?{#6-tzc!X+xm}oCR;Eeo@}syrIgbiDH4yxiY6MOs(wm zIHST32R*$kT+s#*v&5;5AgJwe)pj;jT6v)L>J4H2b=10>ExgR|?ocJw2p$E0pfrK< zM`rHta7g53rj>TuvG~nVH1XPSY3HyXWTK=fy>Pp!Z*VdRsD0Wyw(gE$Rcm0dv^h_X zsSDIT%j?vBjs&0fCKO5OC7vyd#rd*>RI5gJap1xhqR?Bs^*pDnScXG*K3Qi}DKNhB zrBs7tqfP^b~Y2 z(2)yiVQJ7GM=%#}eM!%2_fjQFN2c(#y+l-K*%Mhe-f=U!DtFH*WmP9c^3q4475T9s zF}%n;vLiaHGStFSATV;IK8FqKKH_R3Qqo^!Uw}QlieKNBMSWKWF4=j&##@EQN>Ki> zSY;^!k5g+w{SoNa$usN#Sd53d5#qc49p~5=epu!)DRIS|M=W* ztn1{M)7RcadUY{wNV2wAsvK2a?M`k3$2zzLZNuRANVP!j>SHYXbuq6dkdHYx z{Cbv5332Vf6{NQkiK;Y8sbG`|GH#P8I}6cDu)`f*dv>_CwGV2sF%LPyRh`2XRHKpB zox|}H82yfl0J>{w!Xz$Y@Aa3B&NIYSTsOkm4rz+~;UjkU*I$p4-K#nv@vmHBz56v% zVpFIqV_&9>xcOC2b+`()RRLeZ9qy_Ey~c)x5m8e`n<+uV9QS-SpBKZk7fKt?(LF(} zDM9T%)lK0uX_N;aPx{W?rq>=Dw5eTRF2lg74B;`fR|!yP3Z7H{1AgN^Jc)|&9JYK5 z4^U#3uv7>)o0wsb9}Qj76usm!LWGzXeVb-8D4ke z&?)@$qefdred_euBoD~uJ{;?D!j<_+1sD6g;IA`bL+h8`8r){yCY&kl=#Hnd_mws-gE$=IdNFbf& z?5wX|+?k%Ui`^Xx?q;+RWHy$s$zAIdSy*B(u|?~5izftU;{iz?MR{#s#5lg^ z*GrH8R{#eP)FEr@KoAZh(|;m8#Wz4kxT0Nx>jKawzOon5P@-ZWiTY(p_kezVsqPQ= ztCtL2Q7R-aGFK^Esg1P=)7p9xUq)5Yll9KbY?-z{iOs41z}AkCB0;%EvfQFblxsAB zOs-h6xi1S#pV4$GmhP7nl# zhW5O(%{#(MPyb+0e))POH4>Em2%R1s3*&GXHjWD z@?~Lr)@Z7R&m7=LmFo&DHYAK^&>9OLwSeM;ji!&H*R`Xd*c$1XM1RVQU%qAzgBep1Lf!}IZfZMl!_6Vu*R~Sf zG4cmk8FKA*simml@I}>td<{H1#CSwnv^DW=+G!x8g2-cSW4&q|_jb|{5+^Y{m3HM% zvX|+Kp86QstwfC}9Q;Yh6GZ-4aobmIv^u#^AVQ1eq_yqTxkFHbFmp?N^rrdYHMjstlqA7)klp6mewu+ zW#FLh&*EhA5D0m7CViX5!1fn8XS?7l`S_9l$gAZUx`_;9zn0lAw7toXOUvgm|=?=2A?@Hl-@ON)e~7_d*LJuY0*V=ehSr!JZ;j(^WIK$;l8a zzf}^hUkf&40i)nqLhVI_auy$IKSaz&Iz=z{4+XuzCLyMU&7Pga97RqWvJ{XZnAOIZ zF~c)QL%UvONAb8z{{_JD$}N zZ;h^R>3AMimqG2hn{-N{OG)&Ik6hGd|E*s1BVWW6G7EI#w@$30f9Fe{us?)=nu>_EjR0$ zPHC01Pv7f=rv@@e-0ViD$DS4Dx)}Vw6>4MT2&& zR$8lQ%mo7Et*FDxki=|zo2A-a_gs%Rmh$G%#iAv!*wa68`ncU*w5-^JV-)8@5kyseh0U>PB0Wqx03F&@zIN|MP-j4D^3u2Qfa*1?6*j$Ok%cLyF*OJwH{4xAX69+9$W_)k(Y4w8SZ zk^eDwDM(&<)VP{*Qa%`uX-fwV+ZhcLGE9nSGx<86sF?}E*y$-yF~Bab()uwd5P?N19pi&mA6Ts51XEMy+jU%n867D3xk!cYqOnObXr*b9 zaXi82Q{ISm=Lrs8D7V{5dBW2P1SrK4PP~6^47D-ipE9P*!-*~l-$@|qf7I8(3KH~# zh$4Y;7XAgV8lMg9Ozp0JlxjQ*la&I(h}hTS5O7TiF-7Y5{=VRUM)uf9>)}1c z3H>qWrP<8zoQ1Zr=(A3?k=0?b)%}abZLfuf*DdudU-z`DpQe~)gW9bnF;Bz|XWrUg zGx=4dFgMdH^>ew_N=JdhN&R~0>4Tx-PC?(Cew5g@ypA}b$zh4vDmK#5n_TwjtN`-7RI;t&57!_m`KGZa1;tV!8LXmMNi zm~*lMC5fCngK&;1Bfpz8y;*U`RfaD1F!W`yEDd->bmKyTszCdZf&kjvt^Gw@gkDlp ztYNc7)Z{a|Ps(CGr2|7mP0%HL&j(f$+OtsAz;4ZA;0foNW-dsD1L*>1EaqnSn;{#R z06XxsPQa-p8BQ~a(C>oXSGeOPj=*~-IYNU$=SZrH0M++^kA$JAU!Pf~cF{KdgFnU4cZ1n=4Hj!4K`$;(VZ4^8DQ^JiHn>{8|x4u+Iw_d}Mbe*8{5MBLspu@AtX0Bqp-lWvEj=gKXWe5WgXY7*A zuN#TUewKXRrTpPpw_MJ_X;vt@t-0Lql!({|R5;plT0hRl& zlb?b|tIw)xt&EeX5`JL0av1y+B|7qka!*$Jjsm4Ljwym&k1r~$ghKDaj{(Pln|nJD zneul(Uq^qt>LzaHV>A+gv)mjO&8kJ+}w4w0|+v&<^4_0e=d! z7C{9fi?IgfEFYKywzBlRU`0+aYWA7fAm08m|3Yob<@jUFKCw(#a{}!8p%A7UI;9@P zI;gyJjfv5Gp5 z!J?%`QLk%mHuI^F8=O#1XFY}p#l+D!WB)^+sZkZ%{A7~wOnyIow`u}`R^_jhlL@dkwqE?X6jCdm_qEP;>!?U&bZo&Tbz>;^V571(^9FNHqJ#cVQ zm|bez{+M(XL(Ejr1gG^&s*2P>u~h0|%yv_2%-iWcNjrsKqAx-vtv!pC*H@pO(P|X0 z;dQf7zXM#LObyr0VfN$aDjW!=8)pn=$3T#|CfMgE{(zP|op;hkTLDkGdZugUTvUPP zbAD&qVN95A&e-IjAFx6S$mu-xyDp6sIl3H9av3uk_SxoU3dL=U_HTR5!2N~yr-cfvTNw(plZ`5n3! ztVxE3hRJ8L;--s`KNq`p2GX9J|M<8ueI)M0nBIEB5yC7gp*i-i5C}jeu`XA1_{~UY z7;yZWYfX5Sok-{}4F0lL^^p6uC#vSw?ceoI`+6R{f4>tpE2k)~MaE`%o&pQfNuV73 zp%%=e$vgudO1T}sTeNe69hogG3={MqHL^xJmh)!4GTmv)(%vE%iQulYmbh%_xLzX{ zqnm?B;FRMNdjqNZ^9T>i-JdaIvcP(4?)St+Qu6Hw z5j91mdnH3fG6cN~c4p)T0s*+7mO@p&JimT_iyhL&Qwwr$j)TuTbImE6KxHkv1`QcZ z!9{gp?x9nMG;NKDV;i@o+d*@j!|iJdz0P#lySAaOe8t(b2%KSWMMQyd6U8sv^9ig~87-aTd){mnccpts`TM__? z0fqs@#bq8K8+uuT7!BY_=1M**K@;_kmc-B~Pgu)!96CxfE9Q185Kpfh)jK7T(Drti zi~^Qs%RMA7Rb;pT`E7v~45T1bJvkh5YAJ|}+~m1hmpZGK-179Cdr(TZ z+!f%#XIm#}Iz%-17JuC3%?OMG6mNU8Ji4cYIbXn4(N|y`1_LJ2Qjn_1DE}DiL8v@q zUT`ZMHF)vCQz>Eoj${rL)3T#417-9uU;0S+lqW2>J?xR)@xYj7-+v0OU zR?p_G%-d+m)Q@dy#(dk9NE&o1KQQL6%OCJAQFLa$6 z0u|k1h^Bg4nZZ0zg)3s6s=bmL^7n;1_Gjgdk(4bP-deZ-%C4=nE|IIAQxrfobJ3() z-=QU0C>2cOr=H+yeFQSZN!y>pVc$R9!YC~*s5KHBy92YwFvgly>6v z<(^nvc&m_y>aZR$5i{zn4tC?KsLac_7cVoNEKE1rM@-y*v8Ng3*U-mxZ_w6i&j*X= z!d1-|7KQ3)rM9@=cGxWCeP&+YTA=DJ?Qg5QxMs99Me4jX0+z1UY?$G$%b zS_YOADy|d!E?WC}@78a-PVatyy>lS9@@(w$%F2_UPq1T3YDxv&8C|-2V;9^Kb_%l` zi}#j_2ouiwbI(TinS9h4+ULtY0>+II^5rgT@Y(Y#@;(S#jJH5<{DI`IsA>W(-Rmh-xwU2`k zdrCMny+@baNP;?tz-`=1aGg_AjH23bNacXuEuWm^#t-|KVpub<#%NOK4L1NAPg8P4 zc++d|=uu|hpgl@GYS0_~hBI>k;Z}FYx^u^}Zdg6n_I+dQ+9-^3NDdUeE?BZR3kl?w zkqmR37-_Spy~6hF&AL-`$57@24{Iser&`3*W27tZ`l1K6p_dlp1e>df|0(8jy6O*0 zz0I0vLi0zzOz`kLXjUtSeH2_*w}2~!AkM?}L4nK;z6!=6`vB1*1{c11uxTrtOKRH# zy^l|}h~DXtLM;ACaXg@fm7!6KD8Wxp--f%i9%A<=Z?W5>jGBnNobG4AuFrSDe<*wZ zLl2CZFz%@V1_Ju0z`fiatn4lLN!(n`>A6S*1^83|w#KgC8ZMSrjxI#sL+oAnNi1Dm9eEfTT}&+jcE&CY z4vql(?;djpXFFrp?^|aJMn_{)8)FLqBMTD~2jjOj|ARsD@0dhtUXFnO2hq;T)Y-ws z!Q7R>)WMEX72xb{WeSjTaB=-M?jKBUMrI~Pbzv1od1HGkbAXF036YwyvjxDFpM>%M zVl9#oNt^MLsF<;Gv$2_S0*p<$nc0lFxJZZ?|Njkfa5Vj|Cvq{ibF>9~KbVu7l{3JM z-WlNH;O1-!_&>~GMnwrwHo3k^qaB(m(nQ}7y7q9Za zER+{kkd_cvRr{A=jQ_Um0{>3ath);*-va>xVub<%g8%mUKYUPm2Qz>z!#^JV4{Xl~ z^%46uCZs=@$AVCulJyOF(1l?3=WGyoD{;0ZkiZc1GaRTt(WFMlS{|kqPZ?d&Y#LB4 zfW42!ks>mmHtFy_Umn)F42H(FP|8ZT5vm<* zF-}#2lZ)JMiPc2`^xrp4XE? zVRJ$BcNoP6g;*3NoLxTwco7y-zK*2#^&Ra1u4iWF`%NwudZ`F`+?0+wn3FehKIC&yOwa7>LC9r3}w3$Qs^rIU@PrMUEO{Xkywq!W}1WIt)hMdoi3R9iO!a zfa{#Vdy?arBxFpDqBVo&Q>f+#7RR+wl&-2!b;huZBE7laXh%GHV-rHtI-|C!$7^m) z#zsX_d;naJlGO1?W;39BycpSK9q1P}hE*G{^oMTs(UrZrs&)h)B5{$zVli}tHbCN$ z*)xrN8om*4McoCrg>ytkp$tXn_2Ws_yk_cA94sB7bgAHp`a%Q2Pe^#gst*Y4_29HP zr<0l8jEvsn+7QM2Gc{g~BYl$|uU>tu%qKCvC8L%|!b$_d1?loNHH~)0koaH(D3nez zI_OmrxrR;6-rwbDtbI#XVqs3}mf2ulc5052Sg6&Os(f27m~%r!vHVm&G4N7U*>8WT zI5_n8-v3bhoB3YiNc()n-7W;bCj=>_r?qULh7q%1+btT_> zFD`yRUL;+(It~}I?7S0A1TuP6_a^K1+*sp*J9BMRL{eJg(EKsVAzFS8;H#qh-*?K(Tigx7cVtus1p-3|GgL zJzf9PI?IlZ|AJPOhZ&ucW}lZG836|RckBxLQHq#vM=pJbJ(O=p8ap~VJ2<#9ezW1f zGladlmBoKT4^t8TC+>AZ4ij?l$rkFbNZ?3u1XBP9QwUGvT%@H?g)t4F538d+*>K-W ze~3^GHLru%0S6PMcCa?|eLTFf>UYjVWGCO@*bNT)_6x1x!P-?sHK`3A*)j|AOHb`S z--B&K;LjhUS?cCjkcY8Aok8;wh2q(jRd94V)VevoJj4s?F$!};&%AJO2MZskqSn+&xN+9zS#(N5WRMVaJB2@esOf2`x z0{~_cCqFm{42DPaE*N&KU8NfHPDH7|0LnmiILUQyAu(607|SnXgn8ut?ArucS2NZk zE$7&m?ybo0ge1WZyi0=D)Py(6U^zOX#Iz0N@WJw6u@^MYkJ@%Atr{G%gB2{?Ig@7b z;}kS$^}_st$!>97McgLFcYB$Q^WjNrO(Q~hPmIC9A>zA=u`0~JfB)>(`tud6Q1uAd zp~bb^gbXXJK-*{~Y7%XkTn<%)M7I)zHq?=A*Z7j-pYEP3+;H!T_NO}W;R~sk zxb*tvwG~?12L}=iwgR#PFRK<8of}B^6bOV|5NCuU)~M5?UfDcpjgMaCHkDshu&7?8 z)3j>6@w39s2ES_U%SB-m4l2gy>+7xK>F#aIvWt7`$ZOK&(Ph#L)a*X%Cl?ekL#JW4 zgeB{2=k9ce;llNykL^K0^kD=)r|L-r{~g4b+F$3Qd@*WjR1E2T=P(^DDs&p!eUUW1 z-}C&MTE$c;KP#)~JGBY5N1%#S@siqGY_b;}Nb~vWsbxb^0)JbXnZf{t+U7y6B(PPL zaf-YuHmZ^een1I#><*f$z8ij(y%8}&yt|v??oF{P6_Pe~v->WRnt>B4LXhk~68Po& zK)b0^GO})$LFg5x#3=P0wQ@DOk{LWNrFKW|f&qF~9S#<92Yu*u7){B@8$Xl%*Ffjj`aIxrc$!uC zPR?V&e|6N1*R{TVw9PcUwZ-Hau{7Gqy1eJn(n1K?XOpF)ol_wwB}8 zLls!sLP(6k`OA6JGQ=h<`@$CxQS3cbtQJ@%1s#^6X>(S13JJPgjo+*c-#5Z>PnEt9 zO#zMM*a#9Mv3(WHAM{tGqSlC>z6nHD!>9;di+$|0RGq6n1*A%7dVE&8!qEghyEVI- zMl;$#w6{8WF@{V}y$b%Jnx@74a8k#`q8WriCkU3-aREk8TiB*5mz~ye4rW~|s6%6W z5@yvB+%COoRJ7vSh(1gwC=T7z8a%r)w@PC=1>MsM+@P{Ym-gBmTtFu%*7&Bn+*O{k z)-|d|LieKLq)j26;LPeB_y_YPSF8YMY+=QR)FQKg_yG}QxWr5?gmLrAONa|B_%Z#l za-I=7MXuzJow+^r-{co;IFweugdi!=>8!KCV+qh95@xWZwAEWZ&!?18WzN~!=sgvT ziyH&YJpR&~v&mmaI7{5R2FIu42usE}-@9Q)SBSi?);-*N7F7Z3at$|KY_r)&lC8x+ z`SFstUOY$IN&2kEJg&OWW3`a}&BaGvbr0oqko25$7yH&LH0I?>cdunPg5|V?Y|-ZB zslPbRb&!PA=Pmwjg|5v=uf_1}xw|r1NP_huzazxXcy#t0BsBg(wJ7DwH$&0X$tNswrSvzVoeRv>M*L(XQD;20w>Wx%0~}n z(>KprW-ovtTNfPO7UjjDm>A4w<;7rrt&5zA9>8;_Gr7^~w;nP{|E{p2#G~Bl@-w2u zOC^}FdD2+0;(nWh2A>sV@w(gk8OtrF*Cq#E&=R-UfP`rx&7QyX^@&GOMM0x_2$5-0 zZ!1JL8JHr$1lMQoTqIX$jP8@u*v6yD#BdE)NHV13lyjqcxt+v^$6`G6oaJR3Ko|WK zaW{-`SNX$-p_{(vGQgU{v@f>E7%UZ$iv@-*sw5pcMbm0%REcyhV;NQq55=K~7CeP4 zkf-1{awUYjp{Rw10m{-u~RVbga|XQEo1f8UjXjm1O3iLrNux*#BZFU^$Djs3Ei zU?U!lI1*~9)FibUSx zROD*?0)mq%VBOl9Gw?v(V7)>~;0On#zQrS=-#98lm;N z;_8`{MT5>-TVOrUJZJ7iGV2A}pu-M}62koDc1TQh)Ja*w9g*dd4D-YY_&yL1-rbNH zqh```Rrlbyjf0wB!Q5r zGZmKH z)tx_Tiw*1P5;(E3YUs`PB2$U_9V%u%dU%1ye*l)eECRh67g8~!-nI0bPS}m|DcYq# z8GB0`f>Mp<#Z#{wmhoBOZ+|E$W=$rcmq}VZSfZB46J*KrQ5nIBI z`E%HT+LDYZ1jPvF)SpuyW3fd5s?9f(uofEV=IMZzVN%@KVe>?0AX4DjU?H260Wu9S zYFMii^*Rk&MuK&=?JHuDI^Ff>xD6vclh}<^Ao>6|kY9B@_6>BSf6WtLl|IQ8fhr8JpDjak#D~(A%T5R;_aI9mKIF$m{f=YBXxN?)U zmL?c2_>7ug4^ZW-uaSU|N=eW+wV^?kx?|RqWRPEyux#YH(2Lbn$n}SDUtfg)=s|9x~kiS=TRf8kHz!%WP-z>E# zKUIwM4B^ju4JF+~v*~dAwnT~w9N}4YC%2>l`Iaem+gIQz&D~0Yqbyw^Km0#w+@tT1nApbgT_d;2eK7w;u7-E-D-h5nhKix4QK1%WC`=5As(+ z7vi*2f1Ub0u+k#ZTex|eALPMzy<)F`+8MifN<0d6xD^qWc;|=MDxNoTOFoDXX}OOc zqSP8{KaL(EmJ{;yvGA@z_As0*tCkC<@0A$)H?#30*_mipRxM&Z5KtfG>iKPan9)) zW`kw1QYi*k<0MfE>k;~Sp_m;MFe(P)`Q9H$$Mr~l_qV+rk0s`QRvy5V1Z9de_DdQX z5bInNFxDX9oBRQ5#(`;t{UdDt5ocXEV_lOC+~ScpbE%r4`S14!=y{ts z<^o$@(8nz4t zjnOuu>ynnsqwBl$`&Ad(L2e{DmYR;LeX;ZSx%;$F0a9$1K`$3lJ8A;KW5NV-^cF7l$sIc!PW)DHmC~iJ2SOK&#?JY#S z3U(ab3?hMS$2K#FY=<&ajAF;b15?t zoP8ks6S)mTvLZd(0YyNRAd%1|b`23v#83t;tQhPBwg-)Yl!R1CtTi;yh7o_y@GoF7 zihkVh-WxD-FdL}FZ{Iso_UeP-LK~1odKM}|4Itk>Is;2TcggBlJ*s+N+sr1|j))L`&j`|rc)wu8bGnp1 z3IaS{2gr)>T9{PuTDTXgZTk*vznHjquOyx%GzSVCR3$R#BUFMIY#=T}BrlNd9P)X^ zjEe}K)8yTZCBX>IGk>QV7w9BrJ2w1{cF^)Rlm!B5l4?6vr0!dn(?n_rbe0OZQ^ipe zF2ohZvq*`hmti|rf*MSYI0q+CQNidWD!2z_ky2|jpKw~yk`*B*ao}VC zd!%en?!d8vUC<*i?y#*DHY==AaTuAlidYcS__+@o<2V(=%;JZfkb>u9YnKwkCj*GM z1=UYlnW8M^@JgvNC2EK=@jqs_CgMdj{$^n+G%^X&GW#&eIvRy2=&30r{8LK90P8Ro zMQZAV;xRSrGQDzNL`JGQHDzTyL$$)vxQggb@>n22nlzDW?;IF_)P4erRhnA0gtp27 zQCPhk31b3<$&?BpUqnDkLnSY%v=?6{p_Cl@e-U<0-IZ|BwyjiLVMP_&wo$Qd+qRR6 zZQHi(WXHC%qaEA4-@Q-wJe`L%TU&o&&fdpB4}y|R$w*|TVil&M3%sk$)GDEoS|}MR z37uXtx3S73R2+}&*IQ0pXlJL(Y(S94N2K#eqOp}VUEnCsdfek#>adDX`p>2(CxDog z%q0!s#u!4LP~FRbiE+voDG_1gtSGG32}vwIDv6}t0z#RYASa9Mbf#5}a~@Mll~_8Z zV7rGp(o>T5LU8PQK#@(T5HGMXdqzl9LHqw_Ew3QD$lj+_M50Y7X%bD;{FKBx)8mAA zLn51`nNVnOi7zfx*)9=Mi*DM&2Tlgh{( zammn`z?e62OFH^XolZ%GP0P0Dsd^Nuk~G`|hox2|*%1-1B)z+GiXGMF&SZzk1Lr(h zBHAd(j9jUOay&j!+;N1$HJ(UAMZ=JC{LkCS=5JA!`2{blfPkP9D;gAuC^;RS*u0lD zNseL#RBo8G6ixB#s|Q{sycw~KOnQ)&sb~VW&=1Ad`oZYbB;W>->_lQYbP^ywxK#hp zDnh3A9GQ-!Nf?Kukp|65GLx4i0JDWK7Vs6#BM6$&FufQa3tdvwFT#ktBnpE?kUCLL zPi!QXq>@sjHpF;Nq&(V#20|kEiVzFRS2QBe8g4Pm5?XFlA2TyU8bBRv3$~ROteQp| zP5XER(RXGPVH}H1a>c-Bt)9q|wQ4BalFBEfRIbnaro}jpWMX5g-smE(-^71nPXQ?ZXXem8@QUt>?hs-^9wSDohUqJH$&*f)si7RiLnNe`6{L@v;+vTup7 z+mQyK{%&h3DS18CV`{Z4poxyjd>qIc0(1ErWq4>y$2MWW%9n{W(A61BOIeO^fq%h; z;55djta0zmocZ|RhB^&ZwcWYEs#p~9LmSghw_27ZVI?wqQzcY{<&x+Es9F>icR|dE z!l8?@u~;RfSZS5{sLQ^FRK=8;OgCP%yCY900~N&2yuyB&lls{1u9bN;{eEbh)Heda zF}Elf0XW`WqLz$jTd==$HrN^d-DOjtLlBEpQcTq)s);v~P^B(M#hQNkZ-+*PMokxJ znoB~bTwd}fWktNiBhx9dd_hEyFp(@Nm6baMKdI>RHO8OzFL`spep|}HZ zBJ#Eq>cNw|FHD6+&g*8vDDhMJ4lQ^Hx(l3r_bw}DF*>?IL{k+x(s>jd zkA4~7K!s9Ji#Um+Z=yhim$zhk#Dg9kXFYY#T862E3D}_vpl7Z4k}D>L#*GQyiX;p= z&W|LO@@Y+@Bs0C0Dk-McLx3x;|7iy`@=~a>C78+4) z_q?!VhPHyG5rP1Deq=*D3*kRxs^t94A+J%P3_Ihg(ZoQ3L_g|4{$={|FQc6DoJx5- z9~Pil9MlXX(kn?!MNd^Tr9vNZKv~GLLXU{Nqb{j7afqs9ZkJQTqA^gCUdOrCrkxYuTGMW2;7iDTL(NuOEPzYYAuOTEfP9UL6i6*2<*}=<7P|={HNluwqf?CEv zPbdT5hErv1SpsZ_G*KNMR){p9*%^*_97rk*7F1c5WKkK2|0rm!J+%7~Xw<{!Ep1@# z?WEb!`AZZ>3^+6L`YHqW2VtncMp}4&Z|Wb=;omA%gV(*SsL38}CYv!5gFzwt&1!PX z-h97uQ#Dp3a6#rHN`F2_`2IeMb>Q5W8ZskGJ#vdk11a>hO$DaAzc|eHhh;n)+X-R9 z6P1FCxuaiiB)qN*XyL<$oz)_D^W@K2mK0O9f(z*8!{^Z;<1EkS#G75lx>S=z$+WV% zU4xn3{cpXy6a=t2ZH$&s2SiPzwYby*&b%%WiyeY884bR;mH2AgO;>|Ay+@- z-#C=z@j}5}E$L^gmy99W3nwiC`%m!(QOuAMg{ePCk@NM>uL{b3n8ZkkO@+N%gEWX! z58}~XHw0e~yP*yEs;hgMGO29m-t6G1VV**-+K8!W#&-&=lGm^Bs6N~M{p;BF!#2fwQ$DvQwSam0B(&aywbV=0OqpMj-N@ug6I@4+3M!DS4C9Y*)D zLzA#WwGG4vnsbVLS><6!tUwmz#kXO;ogn}+asxP_{TgvszQI0v&6qiv6Gi+hw>_?o zTcZzK{4ch2S%%UtL4OVA23gZld4?s?OLqY|`xLw1oqrxqKh}{JOKkZw`)F1a9juiv ztaxsZ&`k;FY?I9$+7nMl`L}V zkEXXkNeI+U+Md-dm7$_hzoB*Zn$eUiDSQb#AS^C_^9DJ5-U(UOj|!_ zS_r-YGk4&8+;@(GAzDDr$aq?<^Z5C0$oN415>!VtlfU%A+y;B9-#?#Rx+>n3WW;*( zBR1aG72%J65+dphLMSKtaTbmY+xr=nj`9S5oUv2}P{cmh%)^7T$QR>$fFG{W1PB}( zbS8q+e&YDErantd66l{d8(W42kvKmSI}IZpXKo%gx`r56jW?q)mn&3TICaRojl~nr zR|MG8r!P{#-&HId91T{IMCa zeW&6oiVSwh`-6g$q5x}-dgQRMSc`_zoDN0={p(hEGfGGln1Dwtx_@)y5S+it*5|wn z6(@^-xgLqGjp|LsgSUw+b2Ypqc?V1}L`l&+$gRhT%*y0nA?30D&g-xN|JW_WgxPc zRpchh12H83Nk%-w->5+Np)0ih^r$+xXpjk4>wo`zSAfX$P%544kBVg6%4#ne0*e}-g^4Bfoy%!SZt%^&RDSKNX4p3{ zRiupapbhmAH8ABg&wSGp+$etROP%t>Df*Z;@9zQ#{BjfjxObplpfP34k}d#+(7pT~ z=+J|3))hH^_t*c9(ud6KBT)F<4fy)L6a509%aW9~KDP1RyP+ykeAvonEIhW6dezO`()P!k42#l~fZ zgT9-+oStIa`C3rs(xq)+QHUisp|Q8GyxBOEYR{_~sV^x^N-G91OXNct&QZ zzvOf^mUMNS%buCb?8NVPCVuPUg{s~DdLs* zUA~{5AB_q80d?vz^;g@DL;cloBd0OYkeBrIJ-1fl`SE_O$H%?7qsBGD6MmjbTq(+4 z1M^>1a)+weQ5uqH!-$NI)qFU7?PiQb2m9(g7C!ASAA#Jfw zIlQ#+1lz7;g^vNAGMky$e?rb;c@1r#DpkSc0wtt$Ui zUNL5^0AQ=DVb&uW7P?MTnRF6}xn##l%%119yA_}7+b&b%Zj;?~L95f3pikhGp&B3m zo!j(pG~L`x!v$Bl)z?`DIvSjn-8P9_do{v9qeP<_mRf# z1p0TeR~IR)&8TZ}$;cv|}Qn-_xQ~?4caOVrl|? z*&Nm(K6Yi~Hd*V%b#f66x4Vly zQT4a)W?!`fzbsj|vRZfgcj6}FR66@vq}=VUFaZ`iM<7#(?(yzvJLmgISX&+L7?Xa7 z)`GLz&MntSPbqI@7w_m4|Jzt(ui}t#sPEF_UdJz6hsq#)thxw(e$KZO3>xt^9&HB? zsCjD-x4Vt>rCutM`{Ou2BQ|UM>mxGf44dlK1ECL%#6eOvf-*+2=!yv8E=ETa4-W$k z6OXX5`g+8HpvWN}h_JRW-!cVk3@jZq`V_QKAS@dGIw_&t=h{`(9Z!tB`h|||(?O|t z3r^v)o2i)P&%#Va=A*~Ew*^?>H370=YW;78v~vW-+9MsASi!Ae3>H`@N0vK+h%D~B zv(!LinYWBne$|BDI=fjd%(m0brT$6bZ2!yGqgK-l8a-eC>?YslBj@zRl@s!M#V8SYE30Z+bnXOF-7d&E@W!jXTw z>m@5?)0bU7kL`9WlaBeSqG8gGlv@K4*?-a2jPE&$Znv3_Z`;3$l>X8|Wr@k|tP!S8 zfG_Ro24Cl^(qC{qM{`C_J1mXX6VtJHnOt?@PVHGQC#i{+aR_QlA@^>rAg zZ@tZ`-M!id6oz>FWjoXwvR<~}9Cs+LA0zWL-dXPAc6u*8@Z|TNt%u*uO~GKXlc#N; z<_4IG$hh@SzUi3XTElPC-}&hPCl~98#hoI~e?99gw4ru2Vo#qclCE#=S{@lHo)p zM~s0n=Kk9chmML3FnGJ>(e9<0qtj981n#ddonG=|Qag1tf8M3^QTjqIxz#Sh8qS$msKw2^@GsA@uNDyB^-bHgUvYU)CF$ehXZmJor#3Npo(-xjwM-K7 z^!*c@G}r%3QD1buU38qh=;X{?rN?zI8x2=q(s`zBx*bcE?6|*#tV^~PfB@0yteS~* zx8KcmN96!!G)N0LI<)OQZlAmBDoAX*j(Ys88qM40lyFYe1mkFpZ5-wt^2=9sP(#59 zpaN<}l>fvUU$N`ZPxZk@)6HfhMEv|EZ9tP-6rseXoRLYj9Q(1{0_n*2X{LYg=rMnl zD0)@RubxIrtwsErCO@mSS;;0B)w$x|Law{~o=_1aF=1jkXpFrWB3Ub69hZmv{smMl zQxl5dG)PEKGe^Ex!V33-Vq!QWi12L3i@>hC_LK|mZO!4cl=qiYI()^!Syjp9Q%cDZ zv_-B6d!%V{(r`U|SIo1+z-!az?WlHeW_T-;DG*)(fy4p2S1q=>*By3gTNSWXZ807< zxAU7h%fc zQPtnN5~@@ zMNhp)ae|wEayIQx4^Jnu>Z!Eq;x;o|JX4c9?(L>7Glz!0$|!h!))pFhijDq;gXd?| zvu6wtQ~BqxPvE-G{_`vM7W*;%IGgw-_`kUQsGGUB+jJ}4{dTkXuIYMiUIT;h&^N6= zmUz3mhWOm4sJX%EWn+qPQ#?BD9LjPX}i63sa}`E2~`o3y9T@)g0o$?R*>|5nDT`IF;?aVJ_` z9=13Kj;P-oTx0M%JL$YxJAleJ)&?^5JGF)|@RTqX23=evIBC;|)CS^rK>>W}_ixa> z`{gfh_1UqHo~rFXmvLerjk&A-)d%W{rwn>*OP6n-H-1RBocESMs>LAoU4#u9l~0H5 z$E9Qv5@>sD*8Kx($iNYQ$Ol&f&OK3JUDq4*5+9QHJ}b@LM<`m0Ooq47(W7KuSMFQa z@JDk;z3tN2E~g&FIYy`Au9{O*?`Nt^$T z@dc1`cj6vqeLCl{XH?ToJ)eiU#l-|JK(~*s+2e_I4dV&xn(BKS{j1JBB-2Vqk*F=Q z!i4&v2z3zN49XHN-?G#`YsdbBSR(pc0`CJ(tl&_(J>36dvcP>eLTjzqXE@4hcdEm! zB4zp79}xS(tkz+t$*{S_y%|t&-$%7e0yBlo2wZhX>^OU>lAx63TlbPH0IeK`=-THY zFu9NSx=}2V@fRNwWGys_j={Hw*H)Z3jmh~-me+WUhpT+>YW#Z zDYd-2+9EkWCmX>Y;f=9J7rEHyB3IBsV4W-C<@TKGm}eJ1O;De>-` ze88_oK9h|OE zx*fCKEbcS6StHeO=`3FKs+!NS+nTmpJ!K1J z?@iBH_;$H*-|;nnR5ZcWxzT3OccgPCvr&?^j5M<1|CV2a)$%JW_V3lxZ%T2Tmo;&Y zU7NV!;!_csr5*7BD9{*mKVWqjg{L5P@E&!-T5oQ_V6^ZE*r{A+sq5>SzhRp+pp>!b zp7&I3wzi{W`J{A|+qT@q0E-fRCl+0z4px-H)0Q1Z_}2xVjU^mq|t&?(8SDYN6}uChAhUX}BfBH!#t-`ah<*D3W9Q;}Muk$>J2s479% zQ}gcWywLGEmK=NwS5+5a%vk1_Y+PKysvBgnpTTmOwy*0ut!4XUx67iL=@Gc`>O9Jy z*e|G5p?PZ}8ZX&=DH7}SM{6?knF^}e1x)d#r8gaCuIBb#iDx@Kwc&PrBRLLk6F!!w zttUQK*?V!iw4d<}osN#1&!-3GY<(sr(~$GOSQe?6Tz`m*fP#=@V)?R66}N4_pQ1e( z)NL4B`qt{e9eo1%}%WPALcUIs_PRz6#vMqG9+=s_+Qk(zb#-#4D0YF*t(S8E?s zv^%~%Ieq!o6q6VK+05k!SBp4l>R+vsYyc(=1rDEU%-InJXy{^{IR1w2#RMKzR|Y;G zeEJt550|$q5pmOo@bd(w-Yq~&-;+EbapYdGj;mk0R4*|Pmko~M^3+8(;ZEg@hMUkO-UgP z@}v+5WKCjZp?JzF!YnxW@gG5wJB%z~zXJ>Q0!Mrc0^ta?9Ib0wmn&;j&KInzmRCA~ z8-%?p`R|vz^!pv>s~%9U_f^M#WA{DQIaPlE4UqoJ zU*CUv4Ltfg3-I;q4}Jrp`^-q&zV>PT0JD5*I*M8WB$@WW`pOb-=&t;}Je^lItuiu= z=*?~PkYA7Xgq!SqoY4?gORZA6N#6ym*+?2PAf-dwAFjK=FuX9DFr-B13f^2Os|zSDd}v%Rg;K2KiK2ExGo&2qm}d>)s=6w`CI%qsZ3 ztXmZ_=&7K#2@hVo!Jw`{jZoqxe;_I(?HM<7CQjRFNb)j z!V+8zT`+#;;$$bV&_c&=!-P9{0Yme%!+&CWJvA>9vp)SQXrpXo9J>zN>6UnII!Zpr-kKKCb>IpEr4KgsU^GjbMd{?~O1G z_`4ueGBbk{expVL50EkoQ4k)-q)|zpcrUY8g>h$@xN*3eA~QLEGBU<8;MzI5sP^X$RXKkhZDo|H!qb`82iCOmcI*Tnlx_2MaH0|UUn%M z-LzvKdzl1xbN#6x5e(E}sxy6xATr1F<&M_C=a*1V6Uw^#x2r-k3Ql?xOz^j-#t&sw zZvQVITMY6Ak|~PQ`#lS63D@VqfatGyWXvfx#&l}~M)fGhKo$geBdN&!?evXM)G95i zY0G%wg#2{4b|@>(KY^?5$#ZO1cXh9Q_k5N=?ErwYz#u9wx~0c-w#IT-Z?PCbw914d zhgc%mpE20lKQDz_84eR|EqXJ%o=iqaHt|H$2Kyy6XY#%Ju^KObZYCgd-uIl4GN(!rhSYdl69$T zkyRC-0fR(h|4h)A+XsFH<5XoN*%L|SFc+?*|1bkvaxjThDobb)8Ji$(f4VY8gGRt- z(RPskW!96tQ%ctiQe#bUnQ8stYbz{2-Cz6lRIGF2e+O+@yhBlcD9`j?YQbfr$NU;^ zkr6OA8I>lnIioRd51&5p9+ns0xnL^mIUckD$EYc}AU=nPLr7p&#K0vcl)1VRcf?w^ z(wDYXZ*^a}!DLH&NG=G}YKJe%Q{^RjPFI^@W*%!DATr)MRTds4O{-Q^tV2j6mkml` z#>9^h)$K^AaiUzs3^K5T;-JONAfA{Y(lc#1?S$*_rrY1%*0JMUauUR}L>9Xj!<|I%3@1Te*y66y>pHkHL|+1 z09xHRy^<^3Uxcw4Mw#6cH1K-ACX+0XAiS_3OLVlQC9)Zdl?|{PH~CLVD6!znwWBPL z+Fn(6R^|dRk5i75nbt%}v*sl&XOE2bbb}g#@dpx-DbPJH#wLZHLQ}lq?AX|6#zdS#SDe&h}DFzUt_aYnvzmm(Gb^vnR)X1*Ph^;=h~O zj8?=!O_?LnA*}hj<+*A4O!;<0yWtTtuKtdb58)gEsFvJF!Ogj~&rGc2$lPIaSAF|) zQk4!BG-rEmnu^_sYu+k@MN=uef?09o!KPzo#FZWpRc5C`UbDbW`=-N~!9_pHCl_T_r#4l~j+PoF0u+DS&(XmSQZZ z!5sBqhD(khK8|iPG4Da$OdAXZQ8<@q_0o81^Wf#e6#W@)1Oj6{JXDb>fONoq%iZe) zQ$cb!KHg7a^l`)a?6*ii9@_Rf~}?D$3y(zm038EF~vzR$4%3?UnKM2j-C}%DQNMg zO;BmxoET_A+k;!K=emz{8V?qxniullCekT1bx^+%kFiZx08)G^0f!&GOru|rB~Hrf z&Bo@#bG>#}u(ZsO#>pd~J_0gT_J+2L|IcC+;pJZ7>d_>xKhyF3p;EP5Bke|p`7w97 zJ1-AySpx#fC=d%PrC&g&?E;)Z|INB-Ljx1qj z*eMBF6qz56VuaJk`Uthf4ni>kbbD?uNHv3M#=U}h-e7byiWTe_=nyE#DToZf3BC<< zC=|>WA!-?Xj4}rx7r(a_QlHBej2^>cmb_*7u}ksx#y>IGc{BcoB*U!_GwF4108zLQ zqgnW9TO!plx)h0``T2#GnL=V-3yLts5dV@DL5t`j(-DwyJszA`K$-~@I0tuDjC#H28a*WlF&m3XBjz`PtHF$7kKS68A!v&9h#9znOF>sQ}|P;8EW;D ztNF*&eevVeTpQ}}Xld*i;p;Q2jbl6v*kLr9l-6JC0j4me!pw=D#)rC+$>fqzHjkq5 z5zZo{5y_3$NTzE~s)!6%SCMt1TnQ2p8koXc@AVXsa?GmrqM79kOr<-bF_G%d4o|t& zpuD@sS<80BxCDC(r43<|ezND$jZL5Yo5k3F0 z905`l23(Ui+7inmP+2_Gvc?hFJp5Nq!+e}``MuChb9{g0^MH$;`*TI@+uoUxa(RmL2)}$?Espim& zCS%w@5YAqNyj_n>FsIhfDTJ4qm4qwXI1P9_8hNlZxqnFZu8oy5TC3W^=Zm~3?OJkY zR&4pV9Ua!LFZrY?;_^LUWBhMj6=c5hOA92AYIMr{$JwWvsh^F?c`GIK%PHMdWEElT zRzTrr2xz53%Aq+MN0IXv*$<$lseF%^b#ui19u`If7J!%tW#Gm=9wfnKLV6b?5|BX2 ziXtjjm`?FCh8+t3=kDigtK6t5cFdG2$1B$bW`?Fw5(3hw)C+IZ$y^r>a5>O?FC?>Q&g-vX#Cdl3mUN(zxBB!Hep_w&- zwCgY=$>4bt63<>}7_64LsDMv3{Y(F!Q;OH{B26y+7cDT3$;pGki%bYZn8CgPhwEg-&a#geslMls)!hO*Bj~t2Pzsr^ohJupi(vWB8u0_hy z3g+i3y)24!)hv+1mE%w;YWw=@S8^+7d+CSg4S?BSlYdtu(pcoG6EWVVodC*wx^nU5 zd{|7(7H;KvxM>bv!kfzArad~tTbs*=3)NfuRb$R?tH*YrG4LRg@To(O{f)GD zR@65pRFdfzXoE9R@)A6bYLyGcA4*cErKpGcnW23M0`vmO-A$vQ=3PHtx6TEWqIE=1 z&Cm6WmU1CJfPuRut z6H*{pnep<(jte7tNU){*={J4c?CA4(D1!W&7^j1*9YTX&lJd|%UbY=?EfRXyEz9pO z4maCmF`=s~(3uQQmadvc<%7^%IW8O*5$T)wY6`O5q0{)iDLToV_T++(=MF1--Wu`t zh2i$0DM%29cj*6oVhOoMakBE1$2-T{Oybsu=#i$*;2&?7QC zA%mWhV1FxFiX#Kwlred@iOR@0yQ35Na^Y zKfL8zrrybn!Oelko&pOqfF&@QntsWjh?{Rb zl#=#!JXGP_67*m0&4-V5B8lBt1moHbGH9EBXBxkLSvk~J$LkFt%@ZN2MYRhhoF{Xy z6&nD#1^mz2m^!TkE$hRs?<0cve|N)GwLH|3*|@D_QT{;wLV)y+AeW%QrJANv{z8Dg zqR2fOh!(0!X(*K^NY$St^g~93xq$D7FgoxVD9 z2*(?8z0=y@U?!M4(_y%%IO{1zBBn@Kmt(HU$*OV7cha5H)z0OFXXT-r0B+6$Os9b% zd?e_Fx;X4i$MRTCp37d|8SqxKieZssjG-53%w`jJfkbdEAM1>Cn+sY{e@xpB242(u z^eNJupmGQuYQ{N+?f(lw)u{}o--)AD1uk}Zo4q=59b&!**hI&RUVZ3xa zNdr!xJwR?6jr$a=>oFhG&i!ynzUm?sj_XZ$2nUJB z9jvkerY|AD+Kv_%1OD3U)1=}z7VsZ9P;dn2@%mFgK(n`>RzLo_zaCy$*!oVm;BP_Q zT(zdf3N5QO1_q~tCSXYc|HDcse@xxvj*{6EErT~w246G;(U(FV;Ye+&1N}Wx)^3En z%_vE`VZ3JTP)+A>jsaLv;3Lhsi=rPf-Zp%wZFEP+^qQLPBQ4WQHi8(9!Zf0d>?o{8 znV)D0Z8OtJhD_-A-pUp1%R|))A6-uO7?;1toG(b!2N0Hy5t62cSx3|SI(6+Z5FBKSos})-H6a5QU&mFSPn_*=dLqj5r zaZFX4ctY)sS2ciIzohP$u#>t4m1!S8WS#NxkNaOUI?~llN4_ZXN8o+~`5V^+3mV%t z;9dWP%_fPgE3Rp*aZLO_L1N(lL{KNE<|$bR@BpK znc^9L_>cfJ+I=*eO#|_gXH`KdwkC$Xw9Nc@U3Tyz(*ZhPWA~u9`@uc{9@F|FxCK@E z-H~E;k$^-(=u$+(_R-x*-lU!%;9Py?L`~#Prp2%940w87;rwk>Y}=Y!JUv9xaJ@c( zUr&XSlXKY|<2_71(QRWrvpD6x`iYjqLLlnr(+5hujJU@$`)eY90TsL=802tnFend= z>d;GpFHQ16)HDn;o!bF8&?JKhuwm^(6$(0Fx(X&No$D^gp+m-XSN+CHT#A2}AkC4n zZ+i@zdt#cER+kudO*R1hP{5^StRcc3uTT%D#wOj z^B52N%^S$N3gJ{q{|P#*^yTe@nQ!1~Cw8xQxr^a%`+~az@O$ef&H8Eb`pXRGzN`iG za#2*Mc|C_#`MX!MnCT_%!)(E~;z^7mXFX z7AETYzTPBqXO}tfMDJdB4d(H$+*KQo-{O;UUFGr!!|#Q9Wd?rk6Vf=ss9)q0wPs*y z{iwsV8J-NT%m@M)$*W7GGSFyj_>jmHjmAJiO!|TyWs|2~Lf~o0On^<#Rjz`_$n~Nk zW)phlxifsfNqlm~FYyItECPudn@<)b;vTs~3h!C?|FC_k1B{MZ?^hbLIRoXe|Hgs4 zUL@ib@WG*pf8|0xd>QauT#WAFHCB4na5G^PyB>8q^R;>r5M2#R{@_CuQkViDg_o_L z=y=fBO%BTEA8%_r${*)CP_L2CHp{VX`L(sUJInXqyWvD=fEr39mS8(Xh8)^!=fpUk zf8zI1e2`Xxs45?kqQ&1kMIz|2;ruZeZdp@2Vx?T7P_~OL`qKW(Do$w+lX?h8d4V?> z3VbTYgrIDQk~+~KHt9mo3&7QAEgxplC~VzaS*2;b#kvVd@>lYJ9?P{p*Jk*?{~>OX z^}dpe`PSaxF@QPY5Bi)&fAMuLUbKEkLU6aqEJyc=KQ?{U0^+UHqeFs7y-&7akC06l zCWEZw*76O)8n@l)^ChN5%L;0?B*mqyVm?}gt7+QYjfN2YXQ4j-rYASh0DanuBTZ_E zSc`MV%HlLLon1Moj_EJijnLq+u;0N>ZuL4=qo>ZPa$KjL4`ee7)ldle))$ie-bRSw zRJdR!GT!k*?Q=?b8$L*NNY?01l&-Q}iicp=Rh&hQ^M3zkpd64&lpl9V(l-7pZ~2?c z5a$&S&4&r8@Q@GxRqC)hWtCNMYif4TQuD92Vb1X%IbHLwIX^grw+m#XyC)sBOgND9 z%TmQJ4>E#h1UoXv1WncXVHU?I(I%YcJT2BRLGP(zAXaqHQ=IXwZ>}_KtRtoAi>*dd zkxU?8S=UN!uzo-Jr<3L_1>>3E<@11ngYKOup`A4FmlOrO-@4fju;uw;;dH}Jf^To> z`>$Xa;2;*}d&P(s#}z~Q?L-?+qRwOjN}`DN#m*78FYI00hbTW#ggVWlSZn1xX$><^ zD>cx(NEzWfL7OR}6VU`6&DwF|js}=EmiqnYbfi|{u|kk1ZKo{M=Es8o0?D_QnsW(} zKye-L?qD4y`1}H*R@x!_gAL5DK7RT{m!#*uKF$JWUD_GDyX7msY9;Hs(iOeks)bm+ zM&~3DouE&kQwqggjFspy4a-kCczn2t6HXtD_m%^9RJ|tKKZ^@Y-Apd!+=ELwF01LH zoy&K0y5pmr%RQ5;4?FpO!O@wY&AD+q=%h|$0E_l@V z$fTn_bUcfPva?V-&*Rk~fZKmz^<*t^&!ic0qJDIfo>z)m5d{5iXsWpU+VQ#l0RMQP z=KRx-yu@)->mta)G;T9?zD*6(PpvWRl#(_w+8v6{MdBCNoF&p|7ZF>kU5G#G&?eHf z^x7Qa3g3hD=E5kwvn2`a1t(V`q6&3?X4Apy{;3Q)uLJiRz6_R-gh=XdkBEbTqBv#eyNz8{i4c zt#>KU)Y-pdj+<(a?A713O&$Fe;R5O>Qx}{9?koDBAX(ei`TtNu$Nme!u0#*d)4`l% zZ-fjbo!`wRI+Sqa9uEAg;}7?_y~(+?1N*XqHyH2!;uO2?_Un_6$Zsy^Xl{38-yg8Q z-XaJi@g+3bF7Fz;JG3TsTcP>ammut=hD6W*sllMu^X@MWjQI=rKXe_}JQ;*gOTe$BbN$Wvr$P|VJiZH z5gZN?&asg9v=LR6L0}Z{di~d=c7n$Jb8p~*a5j_M3goNTGqeYx%pLz_)S>^?*_h%5BVV^UZk`0+!5ltRkWpUcen3L0owUs-;E_h*{&=CIpAoMX+Ghvx@h^$ppNT~5<9)H=t#%yPkb;uU zU)IG4c)d!A1AUJ7rD8DUNQ{a^;1u-s2D#gu|f#Vk>A~I2|*pA?q0vr{x)0^$JYYr;g zx8ujb^Aq3az-PkY(-~rI!4;a#D?QJUuhP+avYHK}lkgkEmkAUOOJO|ZZYw1 z;;IAZFJp4dd1VyH0Svohgl?nsT_m{iLO&4iFcw=-BUxnuCdvl7Lt}itEM&97qw>`_ zAni+UdJj0?R5C%_w1%}C3E8FQk{?rY&r&ZrzeyX364>9o5GzpW8gDr=9m_D)S-yR% zouOmUi-i;SOCO}hu|TJ{PA~dPFQ5+vG-HS8#H>@lw4mO=|C--JovFAlP;_%Q#KNx9 zZm{L|1voW-QfjxR#y3t`%e81~4Vo7qazj=7Qy(CLzV8eX;vB{6kB>gK(4HMwhBrz{ zrT%#q;{MBps{u(wl1ceu%pN;IN{e3&3bTsx4taL-=41iwgZ8>?$*_`7A{Qu4cra+f zNV(x{MF+cC2Y-=9OOdz`7W{XxBoIN~g$3$i_){E`@533rE={fFwHY2Y{VX_4Dc^>Tvz%%gQ2OwS0?LrZDnST*viOj9EBP|XV}ElK{oMyVH3Am zHgTJ26ElQO+=F&-54VX!n7-YxiIccZs4OJY@7DM@C$I_QPQY7q%);1@MLG_D_u-v@ z*CetJYHc$zq6t`KWcuV{>ZU3E|j*q%5{>(6(Te;x~W+$dG<09be-AP?!J8hr`xzK0{+pw+{ z_WzL4Pfy&7U3iwdu$f4kk+P@%E=nV`BFdl@QBK5jW}ZLnC!xKv$g~ttWXQZ7tD0in zHCO?6bNbyv0e26pfMUVy$V7`13LaWYJ>m%O(Pi%<07^RF3JS2)b< z#@w?;J?%|CY#Vq^#F~Rs`5Y88hff-%|B#r2HnyA5k2{Imoan&lwFfw^M0b{mG+g4U zrwyX_oyM+UyOHZw>1!nZ!cI! zQ$P(hsA@h;c`I7t`yafIiQkA6o8O3Fh<`u}Q3#LUh*Z$CfMRg`Mr0X1izr?`phY4| zohIuekl|JtLv0N_^sq5m1n;NfPcOAv_cRNKy`MU99`0Oi^?9;l6BiNqHPvG*fOX^J%i|wT1ta z*=v5?M;3Q)NkV=DYq|_O8Xh(9=!@DZ8NXU)&l3Pml%5s7w#=eVQdGG zM0EW5kXn+*WvN8ScAUGrXRvQ|cX!gaySr;zgczPKM;&^uX(`!JsLiK#GhYd@o_oOB(tOroOzoDo`3yDYAki+QNxyNL99b?No! zt6%<+^Y9!Nhatw-25=z_kHpcy%8@@N{tX73m#jd_l{h|l={JcdxdT@riZs0va<^VZ zs{zK9kptpO4t~)gPcoAsD_J1%o5@!j=P6f<1D0zH!Zm_$twFd}5Uw)_*9pRIgRol= zzGo09@pJIk&{|!N9L|yWm)NjLfbD6*?Pa~mYFtEQ>PeVBNGaTUJ>zFP4*X_?wTT!A zJ+z`G4nU=l@zIU#0Da0Y&TKRW8b+HC<@x=Ipr^LXp11?5@!z;f+~ehH5qB6Ip`{)N zUdMa|`SaI)Ho+Cg70vGC3>on z?^)(IN7d4|_-?ytP-9JLjWrEzj7Vl%?Pgnb>20y;3r~TthQH*)Gtdp=8X6nMHjZtg z4;gH%3*g0|gNm(;{S%%~!SYbCFqMe+tVv>thanz*03wcx(-*STM*cgO6(^tGj(g4> zfS36IpWcPvC30T`nqE?Rpw@}I(=V&W;s@o}`W4(qGTdoFjKf}mKP&>8q4$+<^F9!N z{7pnW7sj*S!nE)RV=@RQL@eeKz0z2=;!rdeBv?kU3ZRRfqMQin6-3#g#DQ`pP+aU$ z^0`eI>yi1V7PU*EE*0$02>GeY4%g`aI`&TE9vmJP5W9#KP$fv{aP`s=;P!`bG1rFpB%5~?0%z4;)CBd)qkdhljKJ$Xe ze@PIzeH6mPgEXbLHzX) z)>c|os<9ZsYf7=*dkOxE;2%n{l~*bK5kY?$!um37tCir~GOQaf!;<$B{6pDh`#jcC zj{MIpN6K~O*zVnwex)4sIdNq9NR7=OiImkNk#haW?IZo{rI9}e_&z|5c`LBi#0u>7 z5`ccDS0KHgD3=i2Ux6GBQTitYe?yd-N|b6sC8nnkj8>xle^R-9q>DXWiQGI@KOb2t z>ZU3ed$0<}=(#Ga^(Mjp0a(hM;8L!Zu)K@C=SGQWXdYOCa=c(RgD7lvD?Dxbo z2AB=7mnm-paoNaTCt0qLQI_w*2w@91%GmmqfT3iEWR&cBRwSW55976J=v|eBTwah- z6MMifBldy7>Ldl~;m;A-02@O>KUaa+4Qw3coe@FoMu9z4huE#`B;azhf}{U^g1=Vs zU<}_<3IHBeN zr*x9wV;6b+0B`dI0shEyIpjX#DU@?rAbXCivhr*Vq&*?qkaoeqt(2aba|}%Hog9?y zSPu5C$X5dJ27ovs70Tj)7kt$KUnBS)!T%w6qm0n)M_59zj^IfIPXjoft@Y0WxRKzM z0DbHx|7@j+9r9lwHL)N2u@_JJaUB2TpAWeo`p;G*W(&*$cuHV3z~zB;0J{PcK>l+B zmz#F7C-*UES->vSd#ZDv>3^I17Kqw z=1$I=4{e>Ahcc|ldskU7ur&{Lbq&Eod3^vM$!nGt3_O>I9FF820&B4ar+@<-o&O-f zlk+hh&Hp*TbMu=)=Iis3^H1_o+kYVV8Nu8Flw?c+mYG*j0^CyJcd~qJS^b7=?Bg5i z;(?C~-Uj$NK~{*+MKBMbkL=vX3Jc#=xaCXi$At)AfL!P)rR_xsD~ixgQbno_X93#( z*kVlzNO_gm`d=bgW^*mdb73vcmysp!dSNZ8Mfk_s4*|YW`x(FwYQOLfSH7eK#)Umy zhwz2E+H6>LDE$$o|3hic!C5~VD2??K05;e6vFFOrqwL84N-0BY$BhrWkjW}y8wKVi z>;}TNu>!Rcutg)O9&3a=nT@O9c~fBjB(qr+Ja4|*1YV+7U}vZkz%$(?u+{1mkm)Ib zCDk_b_thWI+M>?oKLJeG#p#&sR`s+r>|u2o#ibm3R*ljvJdVAju7maN8Tx7Z?a;r| zAX;BkMR^WvA&;FQu!{*>Mc9RoD{Q*~TPLvVZF>PraSXWZg|ND}n)miz+dkMuZ6WM& zhVA9Eud2DulIr(ieOfV!=b@aXtW#jvhjQkq;apy_{TSBN{2HEzeW+v~))-tKVWSxS zA~eT-!|K_zh@rDT!rWa)*p=)Z+dFJL>yB`qM{SjWT`KAwwUx0G*^LpS4`0(g61@3= zm`j={uqUM1T8=c?#Co*6H0(UBL^_Gx$GJEz)heYa>>=KsW1m(7*yAGaK5eu#l|3W! z9?`}E_9u~7XWz}HvHv0LI@W4$m8P*-wH!N>u!90SYD4UkTHd2Q_LBjttmoL>_S2*m z*4x1Q_n`d@sg+%0Vo_-Zd%(ov(oFW6iSbs&0$TWjl3<=9JZ9OC)kT1 z=X}=ENV=xkF`wlUc4huko>pl-Yi~64c@LG6hyGdY^Aa4cxzQ9g)&Sfjv4+OT{c~Dx(9uQbJ z)Qhr51$I8vi?XK$b|vJkV$TcgR>)h$ULouW=Yx>f!QK|wQ;^re{w7Mk1bLn8Q-OT~ zd7bPl!nToiW6U|0+u(cd7o<2VFtJyqb6Aauy({&w6HM$QDZyr$*q72qwq~rwa|=tQ z@f=_~(s+J{U6aQ10=6%W=T3Hi8qdqvi(@Styqdi|KGm0o%vsPU2V?u>EX4VHeUoI>0(I zur3q(8Zd1#mu0(mmVA&+o6P%ng?BeZ)UyP(*Si<61p>Pb@@`|x1$IAS9Rm9$VO;`y zj<7y~9U*M1z&<4GB7uEL*cF6b&GNGs$hR?DGta|0eLHIsSatSXz$Q0aHgP*UsoAo+ z+u142met+GmYdkC(miaQiM=b`%Ql$UN79ekE))Aw`Wd^k+0xlB*nK9p7qDNZN%koF zwZPEZJjz~3t9O{a$|ZCBBKu1DFndQ}&u3o;*oPcr?_}Q~|B^MH#IcXFZ;~EkR|)Lv z>@rv(Zx)y@XTSV7`?0`6fIY#U5!id~+vTU2V~T;@CqK*9n%FPo-?Ohw?051@Y{E3e zo?uNmugR~mKbhEl@>{H=g=3R*-jn~r8cpn|{8zTm#BP^AVK28By|pW!v5!s6t9;Hp z)45)fIdj>UELULLat=ygvJ!z^o^!qQZ&oF+n{#dgtU+Ku$O$T6vGD?XI;Rk@sRHZq z1(pA>lLdBxuMn{L(=E*(V@s!77IKVTl#zGEblwMC@s6>tGV;{c^m?gQBQL2OW6zt| zUiLNnGht6Sb_Rk9linxnakeK=2w2Vx-hwY@FYJ&P2`mJdEUgsSfxsq3k$yPC(zQc+ z)5LCx^(bNOU~1! zy9nFnC=Ir%r%U$>ED~%7>=A*T5S*_rmVPC$>A}T-{Z?QrgJ-Erq(2I5U2rX6ZwM?E z94#%C-V@lx!LfjSBCs2RL1mfrKLWceSO}PO7RMeALNp^e1@_w@L^G0KU~fX+8B(FZ zK83t9qzZv)A&6$AT7l(IbarY;F@zh00h|f)Jmu7l2DtdUzGb z-XiQ7fz8SOjvAG^Iym-KXqUQ5dRSme{w}pcDqhVoSN@f1r?f9_VEfdV^tiy@bKjw^ zme#IA>~ZGLzh7M^-7PSjo9mZ(iNJ8aUm$g!&GoW8{94w9(&8?T&8lCYeUa4EV_D?I(#aWE ze~)FK7fZKsjP`05OZNy2_i7hQKNVO-;cm85`h~#8748M>DS@>W9#t=qo)g&o!p{MF zSzu>Cz3)nI32YtI`>ym?fo+1kUD7`Ub}{7blKw5Q-H>;wr05*G4e~CPJRE~@C}WpN z%{uSx#v-TfGHC{3*MWAk0ZW-!f$b{kDS=JSskB`uy=!9iw(BKFuYsLtyHN@Y>^)zr z?SM4f#7?mtl)40VAh6K(ed(rNOP_a2cl28Nyi@uSVLWEIQ~HI$1!9IDNWU|&SEYNU zH%#nZ>3->NCiao^fW+1t*q72HQt5h&=P#wY^%l=3q~`S&&!?o>>n)zYk(REvc>Yf6 zO5^#W^mvUW^~=&TVwZenS&sCwREHlqvbUtZ$gAF$r2&CG82QBgvUIV)^zxwcva};c znDf)fZs4+uW6}w=$nzS3tt9MEqU7G%e*u>_V@B%-p}ntTe2)DSO1>gZTWz)eige9t ztMyl;8&+GbzaqW1)@uC~>D{$f>#s;3uC-c!MOqZMT7N}4Gj6s1inLkG@Z9<`_NsKP zz(x{=?+fU~YZ{cIyMuEjc3H7i*J#&*S5xkdq@_c2o9^D?;YwJLES1=d?2aAo#Ch%L3IBi|0i|*Gm4o^e}pe zP3Dk<+~y0Yr=y3Y{UyVDhHuU-Dfy<{k;lo!S~gbyjdj17^Ec%lzt%D=>FKx8@c9J4OJ%Mo!7_V@ zas^TDB+9d7bq^BdY07<#(toC0t{JYwzY?X}v__fe3egSw{JaD`_7^3C_4(hapFiQf zRQ91C(}jh!!jAa=$HQ~~;~;K1X^_vUblK9^EZ*ym|KgdI4$lc&-s#)uWat_#r2Urk z;YyDF)~kPd$&1MMrsq~r-O*IH`@d{O`0tSf{~t97!)z4`vnDyrR>SjFDa@Qw4bWb z)AmdF&TRptJ=y|>d)5VPUuhY@+X&uS8qf|&hf9OXz0&ig`PyOWFQrx5y^^ymUwd9E zESn0jtZb$hWhhTOt16qzung{OzEV!tKA;wlO1))W+IrX}t|xe>vL5!9n>8n$^X&w< zOLek+WrwvZ+3jUdXdkf0%6_9s@|$HZXvHM$2kf6^e*sFj^DyMffq^4+XP{z|#UUL*gx9Lvj4{;2eE`5~bEi*n_WbD>AMBeB+;>;-ZYlz-hm zQKs=F*e>JPEui!=g5~lTBTMCb8ID&}4pmHYMCH1Q-7GFospwbZ^1O;0?d#<;E4s8g z)=@Fnf$}VIY=XL-j%~zklYDK(I>$~KPgky#Lpkdm*8_bglsQ~+xnsYKZ)W#X?!EGY z$^*b5Re6`=LFv58pE&B+_R2>9K41En1MB|Aafn@B`8vRxDhrk8x%QyNcYuP@9%7GH z?gjW#zr@|&C=us@d{au&$5wORHW z#x3^a@*CurSws0OyJX=&%DeYuYfT-KIogNtd zFPzOV`dO|SY@n*uK7(CcRqkr0aX%_uRW;FdRHAX0E-#ECRvvUtoKz&BWDkl+{wzSKX!Fex{F|n zU<>a%!?V}77;3MD&cINIL3azCWF3|Emshx(l-BAR_e5oR^=S8l63&+`RJW5xq?1OZ zi_%>%7ch-7bb$?HE~dAzcr}(s%0xwn^h9MxbyC?vwYE^LiOTiWe|5Jgv&%nmw=2ub z|K-Nf|I&>*lsre-FRJaH7UhZRxvX8`dV8)q3n+i8{+D|vd%e2Zvq15Un&CkSPw_+* zgmHrF32q{|jo?m#R}xGKTkRaRfLdAXxn9{Y>Riu$(00G)Eq3{+i-GdksGA}E%&3C^ zUm0~L)WRNp0CV$cNRv%MU%)CL{iXH=%@GMa&pVzSLRUCayJ)1Yp^@6cJ{#rDx&bH^ zSqFhq?%K&%xY=`%#%?Fe4^PN?S{W6d4v>Z0vv!cTxrTCgkUzPL_}oR5xZD)RIXDL( zj^LA7<>Y%?*l)rgWxcFyuRLUbS-HJzml{>htNdryTLAx^byRvge8`R(mc1V+pNE~^ z`$_UIWL8t?eHhYh1Yu?==v|#sZq2{kUnr59`Cg|qy=JjjQX@5IL3(vfhqp%EQ9fF# zQE?X6s5py#AVbpoGE*WK03UbcpW4GL5NWk9P$Q9`vOql{QpO%;IHr$7kM8h3Lp?ew zof1K*7Dk@*Vqc#19wlo($`(dm^hQ--A+=>JuA*!U*!gu@_5yZg-CVX_<+hEjzes&? zO55spW!I>_oU5{((k1mbXRinPj{rVU|Fi6E>hq4sfZ|ra0L5B;`r^z3y4XlHGp3}h2Va(US&R`!wdMs-Jcq+RWU=dRQR=_-NU<=u=08VC0 z0k*R1a-7l~wuHS^T5h{Vn<2TOzuPIj6X+MPTOj?Q{Sc)egY<9gPgD9GX|Ig%KDp5G zj`Usm9s4`dE%KKD@03-?2UNx>Bj*Zvx$S4pN*OuV5T#wl+&IAjSpl7FBe-3DNZs$+ zNoDpCXo0ly)kwDh19Og6#z31a}gATA`8zohrg|6}eTY%Wb#9=p&_t zDD9Mv6Wm6W?NH|R?43l}Pn27L@=5j~q8uj5V+0>pu}5!F`W=Fj4WUBNX~XhmlrAS& zL2w$u7J@4YMhOlO+(vMR4LR?p^kIT;5tKCIMzDooyPf1GxRc;MJJJtP`cX-QC)&91P}U`R}?j!gp!N*4;|2HYk zDySC0&I+UtRKMVW@&w-`$VMTYMsOv;eFPsR$ifKA2(BbJK=AP}a_g)?xT68#`hs~Mm{GRhi&L^GEIA3@E)%l6D+O^DeiR(Jo+b*BG*xl@Y z!Tqv3;A!%l>AA-9W6v)=zw<25dLZj}S?j!)cpvh*vwhhoWw&O}%AS*bR`#CkC$fK= z{ZjT{v;UKgXXYC0+*|j!$vSatWyElndPzw%VYJdkTtMUHky^w7YNfJ z2QMxBO~qG5pAt+@XKDC97|3<(lwcSf_-j=)4y0V*xEIowIIzr*)Za=-L3)Q9;W=)k zZ>0431TP_YCBZ$Edx+9MCHN%4-xF-`B0Py;JHaIc;{-Q)XUL4r$;R{|f@c$4OE5uj z3&9HsUXg7{wI_SMnU3Yi3S-lKNSW=!zAW{X0_9PHm*yf|U+|R5*jIVK1$b`3ivYJ4 zpaw20z}!6r$me!~KPC990_664DszO&aP3VkLO8qV7;sof>9YyO3CeW{r`5^X>1i28 zP=Ot}2ln9j|7o!U48X|Z|H<7Aqn!s3!Y-Bt=?K9(7;%}^60B!FfG0r>iA@10v#C%+ zg3(4eorM_wzw!{au>zpXBsdGA0Q{|EgzXIPeV>9~@zVV838G{Zb7( z4@%asEi#@LZH1CG5Z_fn`a4jvhV6ioHS9tt>0+;HZ)lV4Gaa`%ZLR{>4A(DQFStH) z$!@26oclx1KRhg}Fl%(y!mJ!`v-cM7{oeDl@nZH3OdY_pD*g|jown_z*6(6)>eu+& z7K3OGWhgB-FqC#5-QCBzslp%5PCIyA2mCq7`?_HM6tZIYt6(EpHPFH^b86u4Q;3j8 zNsC;gqzmBh{;dBK`?_LN*c`p5WlgLnH9MY6#d>0ihR&`o z)*4TA^mRoOEy+zi9cvSMkKUJ@-nV*nEWzf)I}&;(C%U64{xNM!Pv`t-BHEo~Gh$t_HPKXz=cb^- zX)}0rsK*)2h^34a zm%iyWn(dquOD3ahV!Uj7&uXG$I4??9oW ziA@Ft20xzCN%`qEz}iw9DSvisLkz4T+Oam)iR0P6T0c(J_RiB{-CThtmlkMl11R?7 z)+Ku492&(%v2#;PK-pj(8R|K$uLm9rQ_)mkQXpLP(|f=;`Z`j536KD*EY$lF9WkIM zO*${RIF?wYCu4)gW=S;B12PSwb|*XZL|1$jTet}X=w|a)t&4R4i)dG0jO@0pr>~pM z>FYv6N~R2Z6vZ26#G`9^^d#z@4LjN`DX{2OeO8TDy{jum+D|r|j78!d%o>iBV_0VW zRWwan#B;jAWzpJ1EZT|FZ6PXqt)7U9BFS0N4SYuNGAu<8(X5_e$&}tJvKoj0x=y47 zWucV`Ce#7u+y=9G)69h4EhemBMA}QTlVf5cV+qn1P-cL|_QpC{OJ}E%JS~>Ypc7ZN zCYD+O>II#4Q+iJH+<13i_mXHFr^KRocWh3)t1F(&kj0wlCfOv+gyOu={CLMX!u#l= z7&DqWZZqx4g|QSf#GDiD>5F!eZ$l@wgF9J#R^#7r!#CT9!s*hV9fJ%{sapG zITFcK%LedENS&F8#f*|0gl!76NAFpjNkKi#jdsUa(nyd&kOYQ;Ew>5|%F0Qf6)DVr@O0A_Y>$a2Tlb?chz~XgY-VkuZ1g*KB5v3Xrj4KwH1tY~s=D!QsGmRTizQJSrTq=WBf9Cbieku(xCXq|kZ zI$5tJZ8K&MZL_^|2#xqaWn^W|=41v&4no*lGA*4^2NuKRARO~CCV{C*c}AK#5>3Ek zA*@2YI~Gbd#wSA3N+K0}Ow631CSv5wj`tYWk{n9HQZr&55Kp1wF|?RT;r&dl)jJo) z*YrejT@(Gyq>+Rv&>|TEm(oIcE;2nW)|&ty){}~wN*y+%*;LxlArrbDnvtgHp_xL{ zLo+Nr4`Y#}>7jH()5GUjIv$#zq2A&8mZ8^SBr>%+T;5Pk4k=|=YPwY#R+wgT!p2OK z8e}_}Rx;Qc(uRK6(dAhkA|P(>L>I(j7zm5>MjjpsEN+Fkf+7|!Bfk@3WbDN18Sw-? z=SNd(DS=|M)+IBT2m+Js5THeSI?M>DeI9jjL*I!ZdS@NC(PdJlxrARX?+R`so6gY=lLvrO#_)j?)&2lW)hnU}yg zg*#HJ${i?Al5!GjAb{&hHD+K<8Q7Q%Y-|QLE(1Fu0~;?U6fL}+5GAr1x@bCzni6G` zvtvDLK;mYeH)N)ZDwd>{l$L~+be3e6RF*_(?WJ#yjeQ0LHNxKKCt@4o5La+YatLMN zTD`BUQ#glMDx*Gyw;2@LlyQjOCoTM>-5)>In5^fp$!`~J&kb2)gK#tiT*}3H5=-I1 z31|w}P9tsZRcJj)^3C_c=xP|oc(NDO#{>ODv?qz1joJE|88D(jvi#Eum_Yo=n1Py{k&N0X4*-iek&(Sv!mfN=>|>-4^O7j~ruHpD%hi*(Kv zL@>kwQfea+C;=7-aY8C{$11Av6C~n@RP&4t`i#YCOP0}p;M&r)F}f+qEPEs~G^~%D zwP9rOG&UR2oW+!D@9B)4%jND6yHHvqXT-Xqn@mzWL}Llq*)ue$gt=W!0R|BV5eZ4a zx@+d@ndW5SreP%^2r`dy!1Y?ET(Q*6vWPKQX~D0=%+CQ8gwFcAD$h9A@M z5QrzqjTxnr>BxeDogvx!GyFDW}nh=u@&u%(`jE9KZ!{W zM>K-J;|?7i9pb^bv0Je80>cW<7@d1}91k{nlCVJ#1J{nnnNSgC2@FzOvLgyh6*>*v zcy!?bQ4hAgu&=jQPo!d<%*rdzfDHZT$Ab(u(=;=zFx}#Y7}l&< zv@5lC6L^j_iD)OZa(d5NL7D^0Ti2!;c=k)6%WzhF8uCq?dGe7#5N8p1WS_K>NQE#Y zLH%x`oHR5ecT8sPn9SUyq)#Cu6xbS#;9V-yv!n0e+GOFJ>?5GN+_ z9v<)-3rs5Q)SCh@2>v?wv@*BOs|_#N4Ut!Oa*b%th=$_0$)jBt^ouj$d!0_)=5$&w z%c7P$jER^(Hf)@q5l(heAcy1x1RdyA#p^JT)QlM@-QLOhlB``K%%b@V%Q5ye4HJDt zUc{+a?6K0A6R)M+U91QB5oUBbWd@)O3>eQp#m^Wg2M-$rSmn#Jmp%uDBqUf9` zf>TgX=EU&G)Od^1+Luh}-D#l=(9&M2=)JI*#n$&laa8!)hV8WXbR=kl%GaV)$6S3Q zf0Zt_L*lSUL{z9TjM^+LEy~3ldZi4?-4MgKgsh!!?`Xe*CB;e4X|Zl7Ax@*{5(9|W zW(e2Tvmu_)drYb3#x~L!4fyR2aY}}+BiYN(fx#iuWX0w=M@Fnj17_qX(t}=8%!EHFhVcv{)_v$@#p`a6XiZf!# z_?jNvjHP00APO2%9vz#NY%m)pYX%D1gjER$xXrc*X~SbiTBgUKp*%O%(Z}EE2_lV? z-oaZijxNp0q%G*gDjX3y1s6xBixQj6@dq&sL2*k+o2=7dO47l{xhau^z8i&%<33SV zM32_(2~*)va&0t$Cvou&pt5$17P^h|e{o4>%I2{X$Bt`ko!MI7Hhp?q{kRiP7+*hq zd{ayP#HQA9V`k16KX&4brhZmg$=CJ9bH_KrzY|ZaZ!+fHtXNks1|Af17(|L|#N4w& zSYCwB`-Qz=!1H?fJ6J+cEfBpVsfQq4Px92*CRicS{#O|1(tK};wscxFj!UT6YMZvg zk2`TF=`%>eqYLR|=PkaN&6zw7$dP$}*KN?T0rJmKhuC#MA?t+0e7=#2&JVevG_JeeXLrj_KUQGBvxmgG6@X-<~AVj%+VeikL- z-EBabAB*7$4fxgnuf6X8i|XhazI(Ut!on^^(Oq3Y6a<#LuuBtEqzDF3iXBDDQj{hg zjS(t^{Z?2 zRe^p-z&NLUGjqH=jaeEQbPb_^2^%pg=8h;NSRc$ThGFm59q;?(BQD{kt~dy>5In9Z z83ot$oi)h0LXh3Wb@a^yBT-anybi@yQ=c)pfTvwKT(uVEq=3u^$F&RS?3b8G-%b{k zlbchP4UsGDqV%^|shhiFDlSi#qQ5?-4U5UGY*^roUcOr{m`xZ7j-Uzr`C6?fJqCVD}ECNZ%v zBeMWfK8cAX`AK;iNM+Jry4Cb=|YH8o|D zhRYViz9=$wYRz9Xa$0<+URfctDvrz$b0Y}eFDYocPxpZdH{LT0pANx9E|CRa9gzZ; z_n|~FS_py^;2<)He8?pcsRZFSlAwrDgg>DqMiOdBDWSwzS4osW8r4Ss5u6V=^WdvP zEj`Kz`s+bN!Pf&|sZc8%zWziueEkWuexM@K@RzXYj)?4)nx9JDLJS zODFWk`xbOsX+jx>JDH9o3dVrw$%K45?yD5~%_0b&V4?`H=QB0YC~_e;jH!vnl8H+Z zZ%|1Y?uT#*!ZhmuOETao`{SDCMmiuDs01p|Xmatf5Vy<#>JSH$3A_jgsT2%D6zDLo z5JqTi6ASq)NGIXmXbOq`p-tu?yUAEl+aye*uGyXt#i%BtB@;@s;5Y*Jsv-zo7(g;{ zTO$?v{!Qm!-)qy}(y$z4<5VUC`*^kppEzh!Y@jy<+T`FC>3D9EFlD)zT0I`jS+C%~ zP*VxxO~Q1hqIbQ8c7vLz#K=F>QG7f%ACC+8(mDvsaB~<4ujY7`2e5oBFHLLH+#s^! za6Qvm%fmBMjHxNYbB0O^FdaF-BZMgzM%k2KO(h3WpUccG8j}itiS%Co0o+R5-l+A^ zPfQ%fn2%@W;iCRbb-NtlV+MihUTEqk7U|t zHB6;SuSrcc6)?0_VlC3!%`!aWrO>Vb>nFhm89|Q@H4noyWMio%{03rK@c%=rIEokq zm0j+N(1Ros2_&Y zei)k%Q0a-W`9crfAmsz~gE2;5j4ueogBfh8Fn&Ma6T*;;DMD|Y^1(PXkfxxOJCtal zPcK}WgnLPW8YwU`gfj__fX(J(`$O|b&x>fNnT_6f+9Jfnp7&)e0>CYz;8=jI3Yv4m zu4&$ct1aTOO+tK+!NHVT8WMNPYCrEjxeWfC-P)zxNRQx^hVnq zfno;pSV-pr4Ckc1FdiB&h5+sqj1O@jgwen(MpFs9=IF)kg!KFefG;)0iKw7^()VkG z=u^EgjTwL=2e^$QCc+{cApQ_DAl=Rfs@fBdplLx6fe_~HiQ!N$7yqXxDnZ=JLup}q zXj{mn(&<#|0D`6`3HwVuZvzPjkWL4H^ubo8NDmVuSUjB;qO=Fm8RjVt=B)tBNj6xH zZg?zN*b?O!s7+>|M2in=m(da~rR!y4&LC?**fp&gXRP}{Nd#`A2Av~XH!bOHTGnhU z+|wVlYK{uJ#2YldDa9D_2Y8w*3&FZc`*y;H#+1fHInB3-W8@6CX!{|yB%F?iI#@f* zX^cg1OlbyFA+{`7Y84-1LK>Bcb^qhp3dVj1WX?q&U8`_(t-{*n4qxO+RM?ZKu)Sb$ z5tL>1ahysh^nOh*cXWh+prt^wz7%eF!p%tHBBuqj8&+@^8&nLgQvBib-ANHj#U3uPUw9qi|qzj z91L-o19(wFtj|H34cf(Z!1^{2C_-Lo5VS}j^tl9-hq7oQ5`OwJI)}^HLcm~--ona; zpG|XDLWJ}~pHBoCeL6ihH^$$)!D!Sb5HAezG}Lwjms3dGs^?{<%fD?QsNM?_OG!y6$#2Yh>-_HAex^HeZb-%|?ekTdRmJtbk>@?S^ zcs4QxDUq{zGHdub!Ow-{k?5soTqTPowd5&TGHY}q1yV}^g2}8Q14n^C$tIyA z7S7J_Yln!1rfi-<&V{7BB}WOBfp%G-EC`V-Q_2DXCJn_*2nD)Ch%ON{jv#sH)RGOM zfCylgHnJ#|EJmOtNuZcvkssm%A_cR`PaxJ)2E8KI;51Ma%5jEHfJ71IpH_f6)#6UI zs6zptN25pew1`S~j34;RK}QJ*q_{(&%$-l5o&ZL$>9dgF&Le|UJMlM8L!bvkEGc+PJ@6Zb{ zREK(jA@X5H;Dn@}L|i9fLP(OwhkE@;qLE}Zl4K*vZX`L4B)5^|HIn>BQqV{W8=*!v z48PQzRwI0nhVtngV$5)w$+98|9$YpOBP)~0F;R3i zBp6sFvLFF+CM&X(s7g+(X> zja1(9kGzLK?>so@o!A0`s3GVFCRie!m6ea>f-sg>@er!=Dx4WhXU2+@gpI6x5+tXJ z0isU>4n~#f39%bL}O<;?N~0wIqGgcH<rRglDp^eNC&g3(h$DWgcV z5b?0SN$6UTr)!}ZqkB0}UPH7a@G~oB0ONRQsvsX57o;Ze8v$5E{hKMjkfYPbw<+C1JZNB(=PZw*O`}JK`OVw+|KYAT_G{ipLeOAkR>g8*9 znAh+tUh7MXQ&53_M)c z6>Of!QUtRk4FwZ{v{48$Ev?`J0zN*26e|fU0!rm_JSJ30jw=fUR(y`Ej3z-A!&GmD zCOn>$ef*y!ETlXY=0Zefg*p6jku8E{q~Uoe*e{v?56e6Dv`$r4>35J5qu@EOdw3 zSP`gCz#td%c?yXD{@{l@?vH7aV41AQ2EHgHB1;z820gU94Hz}#)c8CTVzB%Le1@6Q zJIC~vmy`@$b`na`DYQxLrZiS?Q!+QZ1!{oR@O4u%8`^<6x}w7TB&gA=C^;)L#g?l((KMul)W)P%M0R97sLXs?rM8N{2Bnnv(pHIS3A&2P} zG!o29VG+q8NOH3UNLY0+X5>IYS+snDBLRkkZXvrbKoSXp3V{fc<02Aqj*nBoI}9r` zz{&uIq?;uJT`OY%OkI#i0TNAMG$>lU*b=-Yw$wCF<8An2i9l8+i-AJ9G*p6A3q?_c zomEgBPxR*#2pS}~ySu~13GVLhZWnh8u0Px%xI0`Ng1f`T-QC@m|L)W7%T{$&pL1rq zs%IX~OxyQE%#ML6&5Y(ngwX#Ny0hOWf%Exq)Zd5kU^&!UST;UU$)w#M`O4}n$$6+n zcS#y})HTr9#I+DT%p#34*w|NMxU{Tn_rcLo2W%TSzz5%J-U52~c!;s%Pg~9> zh%TYRA6UI1aYE#w*u%=&K;?`op;4xZ9TDhu1Qq}eY<1DHFuo>PDNZik1S(roeEdj$ z!5nD>hC#S2H|v2TCUIWkF05w~eilxBKdQ5~DRy<*Tu{%Ry#s^k5pwZFa!mVUXlbM*IGJEH3e5*n4xl+C1p@_J*BjkC~Dr=>HC z(sY8$EqJ7}{7-Xa+hh=Hi>(wljSnJ32o*)rV?a+iD4(4D71`>PCSQRZ+tieZxFjG{ zSY%y2g}h*zUc3f~f-Q%s5Nrc`r<4+obWt9!Ay$8dDS?XNpj4a?!j|j^1vw`hv?WOb zkt#`dUYHDTRn#e@eH<*S4&pG7CEX#3M*Aku{tdQF%nsLo<56+GDPpr*{?>F;jxu>%b8w0!S|5^!~o{mQBJyr0FtiH0GX2eyp!zCnRGeC#8!B zGRl_p#SMz&KFS9S-Fy-y(??fQ^oU|oI`+v)JlVK~Zau21jy)nes4U)%QB3Jq5@WnJWa1+u`t`zjL zCl5woofua>I3i&v2@J&(xu+flvC`|Da@%~VJJ(KjdSMg)2^0WRcf(zcRJ=y zvMa)>*l!KUnk&BZAARYs8n>Yr2E$<~5&ud^$5A*!RmLyca1XwphvZ@DyaXXypb%{; z-5L2?{}aaX`+R@P{oo_Hy5GBy|70ima?x_vtG0y_eyA;b5hyGHb)Q;N59kH7RF>PI zg$xquQ?zB_JaskTGHnMaN+olKlZSR{X?-OzON!YrgqoNGH5G+9qe{2wNyp$uHwp=c zUbb2+n{O9(wya{;`XS9t77sVGu+&tnc;n0W*cFq{1~_aJ#1ho?g(d^S2&Wuq4_&T@ z(2@R*BL>%PK?KnDpx1djd#IaU0-7)=#Bc(WOC6Mdi<`@P8QI6KBqR_MZ$=VT$V^O5 zNU1gF?ZJ}PTMPWBzN%uU#JyTxREPi0738gJr0kYcui^OXORTw7Tf~aLb6&ujsmbk| zX;V@SiHusMwKPs5ie|j;pAW>yaT*p{EFECJ*F&V5``@f1+sv%3@eTyNE>?0zRUBNb z^UVn^_NDbG_}P}%znYs7PK6Sr4sPV*{xQnQ^e`%u^(|jpvCO^){X>mUrpHvWxO8+q ziqMN;44X2IDb;2fIa$TIcb8~AVvP3Na7)(GQr7mFmHkMZ6A@6FLaWBx&+^^LjNe6z zvQZ##dA2Y9-08k3pA8CGKjkdiSe(J~`C@*`>CAb8%7%cT+MMwlw{%cJ;c5TT^Q44e^%gD%DzZ zP?&l=o~q`1x(Hb;ViKWX>#NKj8Vj@ataB1t9PW4-UpESq-)sdMj$+iwd-HU?&96U? z3Y^Lt@PlH0NSQNKo5BT>=}Ld6SCa&Q@K3Xk7gbG9UGsgM{RfUBZo{|>r3{Rhl>koK z%AkF4Y{ur)Q0RUHp_?7OeWkNrw}Otv?|}k%J8q?UDpgUr$Bb!U4^Bvk=LaDn&9hdy zZ68~@ic!Yl9F;JIJ)_SIuIU(pE>PkDG>Eavh9J192Qs3kFLn7ce7Hxv(QHgI{}|k z^e_*06&gu&1R2+Li}z4L1JdXOutmAbxWm&p9Z4RMI=b*8&n>VMk8 z-n`1{&(E*qWY`YRl-3C@Jro>iZ{2Pdw!1gn*UW0Xn+h*KjxVt6WbD-4^j)0KGBJ7G z9~)a+Zboj-l@}Lk^qN52kUuw+sBkspYFeEtSD`K$RSfiR(>-#!i&erxAFoFf{x}r5 z>#R?%9W5APxZ8D)$Y?|pk|&y{wKAx$W?VKJ+}|fQRSBGX9h9(uI1jV%9F&rEd6|vq z(QX&~Hm+s9hQ`(OLkAV_VFwlYJA%gDx-?kYrv%aa<2*mKL#JfN3O|AK{Rz(j$2Yfk zV8uoX6}z&i=l91NKGE1DgyVJPVL(vVeF7;r? zZu4=|5!IWDN&%rS%J@rp0ZZHx&uJCwsskhmOGh3cGGW_6f(tN6H{mvQMyce%oAE)N0u-z(E z6$!qyy~i@p-oV5aQ;CiyX6Kc5;eE}T$F;|+Yc8K#y6c3A)@74$RJDdej+Lv!c_I}O ziXD%R2X(`g{&?v-_x3Bn!XlE^yv)@4aaJesN_Q%S!=~SB4nIfD^RXKrZR_hI@;lZ* z2hRJ}VP9Quaz)~c>QHV@_KN%LZ8=^8RDHlM9rP0>4AN)*P`r$o*RCoQK8}nI5tXSg z!ssZchZ#zyg>h%3iSQzHC^9S_%IAIQ=0rL2olcHGYUJ+$Wu&Dz3M19wu-iScGNlxo zg&CRis+krqPn)-n&M#8foHB>s1ul_+!=q_-YO{BwcxuvF$PdZg^?qXcbmDi)%k3r& zI=323AC1orCy{@Fg!7Us#F)y@s`_&Ba$vxO0arLNMKlz9;|nC+q7NM{xZl1vyv&}` zZSM7QNe*(d_aNHDa4*D4-fZK1lfP7dsmV{KzUsP@a*%{6!L-9p4I049p9Rw;8inB?PA%kJ+zxZ|hEKL1vE}>#X~H#fRJ|n$PiRhRTT*$9vQy(%R6r=b5*`yGKzb$+TLy^&N1|C-YPOQlh__gk;4 zo%El13W-C#b9QqtJ5;S2=FO{v{f?N*U8LOpZvTPxW(^uJUYpv#c(WuZR$O&@us2ew zao3jLxN11u#r>L0 z2@#;cT{r?J$n%<#lPL?L!ov90=QDOfWEZx$?qdLe;$g>qI_3*^_Um%YovVtb)uV%+ zGP3En8ooE#y&$dlUU%IRO$y=b*wnJ}P4o_pSK$RY58J$*PfW~m z)83}O;dyR?qH{hMn3eqQ!P?z5bL+_ck{1+IE_K=bznAx+yOR$q3QhF9^FkaCt8*WpjCNZ_Q1s9-{c(b(X7>86?Qt`SjVR#QNy0l6?TRa&D`m zR6CbzxPGwJ?e`}=r7yXu^i1>iF#^nMO5iR{{9nAlr+`|+Q-{+NutX7&_R_hpXS(k* z1Rm|VJlFD;dKe~PDHpcu)T?>h^GT_B?vQVcY}FmXAr-KtpF1Q|GoJ3>FX%2I7ABl? zr&RY|?V0S&)9?6pfE5K4Pgq3T}MrU{oL(zmk*#gd<&Ch6S(CHFI315oSb zb$3oU3nf6+SOUI99n|zsWIvy1Z!70-jw7(H_|OHYp>a;wosu;}jt0HEYiDP=_=t-8 zevPqpL~JqN4_Jj*Jf<`Eh#tvXR5`rf?RCChtca$Ox!+oPvU^w7+{xOQ%eH6UY>#`t zg6&X)+Ryz;1{MvA5?6AnE5bDwPrh26pP5=LiQ?Q5VD9x+CoBE7s#1lXH=cndmYt~% z-Neq=v1E)~gpX^(e(p_6JOdgk$f3nyKL^se0X5Wqy0* zYCrvU zce3vceTIP@&pV?fVuxau=_*+iuletqPO{dmhL#i80StUh;VdH~;Jnm7BOE4Q`Ce6*SQ zGVGSq!+863ay#V4*d!qqwKjMk$vwx>7BRlro-U6(tcqYgcsS08SYkP!=9TD058aQ& zz?f`q2x=bB$1v!gv@f@x&-CphLbB?VKQ1iH7rAe8f41Z4nS*_=+t=m0?c6Kkx}ROv zZ%n9yigkHas2+zcTP))_?r!E>HFCfPESnuJ{}O@ucFWEJ$E>s2_nzRr>r`iz3u()A3F^Pua{-Fk`6+$DL+>yzZkXt z@Ox8R+xEj#Mt9flh2;hVy|}#8qIZop|MtS-e~)U52}Zc>T|+)>JgOgltdCv07mRgN z`BVR8hfTV!-wJ=tPAjUG(8VoQ+PsD^wz!U`w2Db|jYijI>Asj59dT}JKvDQi5$0x1 zIA;4AdcSotZZeTla%MH0J>KmUc@9mk|3vPZ*=1WFlwn#c$ev9#sMzc}yRrE5D4Gxw zcIxE!@gDKCooUAi15Nl4o9To*mcc5j7E>D^Y(I)K`McS%$SHsgzejBVv3vNCzVmC#OPxd4xZ@dtTW++i zU2-$$APqx-{fyLYiQtrNoteoR7}BJDS=KjoPN10H)yt?^rkSus>yyVz2E{y>82)?sGU4;HNVOO^?ULL7dSv%eR?HE7@-8TWllS zq454!$fiU%O0UdUp{_80@s$hsrS8(oN4* zIA~J%qD|}=qIE#72&im4=@#psjZdY;e4W%ygR3gMTVK2_2H$Mn`x2sq>W)`&-0O)S zGGUR3iGs|FlIpZ}yqGZv9!4r^oBmic<|?i?dC?AKx8_|b3RDc-E*k203#0nY6@vcW z#M|L+&9}G#~RDyeMn$FgMvo~y8^nm8JlL3Umul;oOPi(!eq5V++@H|({<`COK#yF1b_4*#L zf6HsFa6!=ECGx!+s$DGm3zZP2+~)A8(BjSRc|FrRMI>mih@`c4p}jhSS?BBK;0I>P zmzfXx$Rh)F6MBrx-xP|Q9$Z~;8GPDlT%*4s|KB`n&c;EXDyVPYzWw_44g3G$QEQkP zD?8YlvHbry)aUAQwrCRQey4yQa&p8Z;k;5?bYfu&I$k%?r>QtJ*dX$l>}jIr+IB+T zpQn26?udnw;VB^0R8W|{A~L=g4HuH#@8p+)hj~bA2Mp9I#i``cx|6)S%;o!)I=!A4 z_4B3Ii7!s+hR@~1*(ARIv9C2*K6MTZa=3lGf%x(EK59-*Rqo?7RfWUjdP3~_#TX+_ zwXWM)enE<HzA~m`$)I`LpctPT-AOD&`eo#EA8jvNiFLBBY|i-@s_4e6tMzI)$jXz zw|s`U{}OA51>UVA^85>{Ydp?6!g$(g!|Bv_^$vHEc3NWPzjHaFe|N8*|Kp(wOtU%_ z(3sSEI<_fg|-H;M_r{GH#|WHkbGr1BU~U<9Nnw%A<0FEL$l2TGA_!r+Ba29uLrnYF?5iEKjX zy?plwy!gg6$AsQF-+~tl?sWGv#k0wNA3FCLFoik(F?V2>NRiZGr984=H^k09O5aXM zM{|oY#wIPRWg2U9GmUW(mb6ZQ(7&#<4!@mlLsMTZI27`y|tfxLZ zzF)bWURkV2v)kS zECh$4YpcoD?99hINKQ5GvkWm>q&b79(`B}rEL%d=i7vMz;~gIG$w8imqs&@!hRk*= zicu-&UZEGt8CJ>0N_s3`V#&rvF+IhB^a{9Hy!W;wzi4tSioNt3*D~7wDUz?UvG=ie zv?XagB0s2R(u2Ufsh9p89P7NU=Y5xIUMB^R=o8z zEA9M=(Q#AGHTCwOCFHF>c6ud{g)bn9bFIFNaq4e-?CS7#IKsMpgfWNo`A*Cd^-P=N z_P#^)*o`6|i)^DxzTL}kxV|K2V^2p0Ekbdq#Ll0Uiy#5b>97PE4wl0613$22BW)lP zx!==;R1aK0sJ|QEm>}-*a41@=c1~T@$Sn^V9#8w;(&5^Pjut;}>oq3q&AJzQdZSN%#Q#9&&X?yot zcws;kz(5{?%8IbcDx(PJt|U;!^7cmTu37L@;n3Qb`smuZcw1Z4Dz7QLVLFfq(j6W; z7ZYO`b9XgZ4YPo@ka1A$=C4HoR&CV7O%x=+bDEWy33S!3-~gwj;ZHN`fn+H-38a}< z*ab>q`Hj*Ya0j9w#;*!9k(dHImN{0%_>d}XIN`F|uCKP8T}5)8Z-T2sG-dY`2Bapn z$MX~k8Q3&aU2FNFJ(V=&geqjmf~?|G!Z!so%~C`{K5a~(3{9btbDvqk`u z0i`0cCVIjUt)QN7PVz0YE0Ts6q%#MjISy<@m!g07g_y$$$ca)3&R+=Xn11F6G`|AT zp1b*CZ?OLF^p9>+hjP9A?OUxS#5cyT^lxnBY{n#KW#Z)E>|pM~s9|Mq>frADC7|JC z#;9WE^j<(QIyw&3yTf3?y6@3b zCp3_9hYjfc+H2VzFAZ28qBj;rcb0!jbDoTRqAniF`lb4$q4qd_HhIyTH}%@l{rIWW zk@2kVs^PAoq2WF?K8er0Z)J`)M_S$X z+F;j{`5r*;Qogv+)tSrW5BgwMko&kSfT>3qBN)e}I^2uRoN(DK*~!Vq{%8oF8WhCx_r)G{+~#JW68d=Iz!m* z+4p+AKcbxsw8if561@#uStp@(8ruMJP9wpmZWWKoonPerZN}MBi&rf!kd+H(Tq=b< zZ8Y>DRnI6drf?RFGHpr}`Q6A51}{>t2jjS2qYTLO_-*#A-L)sO_xEH>Yp+WxTz<=3 zs}tSce*44}Y_%OzZ5JPQK87dN+z-(gQ+5~GbNcm*P<3#IvPJJCM5 zHC49SGW{?+m`AYQjFLAy8Gt`h_ojK zM(zSAfLS15)+|82-BM*>rJO9TPVKc2L@Q%maZ?C7`EOo5@T!5$zk={9`Rrz1_p~a2LoJzS&YD}YG9WA z$WWw6gq8o}*PRM0AEAZkm+_77{E47$jd{(8l66v&Hc1ogtJJ1S$#VIkzGJvLbJby?JM$EXUGyj{vNXr zMCpz1|6>+f3aXo)qs%anOkM#da4nU4g)2R8GvRZ%O*|2_zrvdPcC z&2H`#B^EIVwQ=e5K%H+>9p`u)D`5+U+%0+>&k!@9&#qt3mJu_c&Km3#4Kc5Az+X>Y z?^rG2Sg;qU3D**W%hCP+o7QFzF>WXcRu5PXGMrOYXSk)57LcM;XecQvEVGJbx5%KA z`$-U%J|&lAR3A^$$ZC~OW1g>;Mr|Y)H*4d?w~$28SS>+SeR@*3kY=r3z+#neGA?S9 z0CvsLU!*LkMgmDaE({s_y1sn(bq&2+SPSmrnZs^~@NrG~KaNi9`v1g+(oWHyPjtmK zIGG(F46>N8J5sEdsg&xf)HXPmlpfNx3?c%gb(DF*alyx%BCvTvUItng?I|%Dl$zwIl``6k1Lk@P3fhYl_0<;P z-@|t8D$Z6N%lXYa82Gn5eiATuG4XD#Ii7t#Os>Uuh&T*|ZTmVLWAdBEQXh9tR@6o$ zB@L5DWkQb9yqFM)avxlFp zW@mxh&;PWUS@XP3JPH%fp!kh_8d|b%@jqLGOxZzn*U?GeV?vAaF+$oO5&p^-Nt9_R zXN)8{NybKpU6emmD2ue5_i*y>lCotoQ-*FLspI*_wp}~a)ytqGi7yN3y`@v;PNR*5 zD(ZFhHP9toJ)oRf*PY}>ecx3`w8XEAIwItx&PENq)1D>0>;FQY3gl}_#UN4e0-yz+f)@*&vbMHEyG<>m)v z_vX=>>L_X1(OU0BL%^b9=A;v~Q5;HjW3u~T6)~23(~R_S6Y@Fw5qiB7SYtuPAiw(G zf|%qNgDBVQPq}xO>^6)I8iqoH;guT*NHv}uQGM;57nWfPG9x!0{7U!|85zkZaxpsq zWHUw4g|*Z0Te2Fqk!hfrh1If_Bg#DvvO(1M%b)6uiSvLI*I((aCo zbViemDzm$7DnQm*BAtt3qr*eVP|&B%J^$S^>$20WzgM1d zjHAC>{(RM~prFA=C-mE<7UTy%(I)KJd3HpHD(vs7a@}{_?99CuZ?e$}=J8RGRo$TpkZC7PJ-dqRY zKCSRRTZd7(BnDkYrFA7re{odC52X7f$kw8b#a-3}wR}V(;a6o*^-2HbchgGdgGl&t?W%nBw79 z6x0tAMw4@-^{eVc)vA|QiTr(bMdWG!Ss#@oq`{X`+#ux6=ULZEh}4BBA@U!>8bX8V ztu?b^GM9I*7u{b;NJ*Xl#C+ByR2AP8H3^^EAboV<)?nc{npo8)knV%`=oB@Wb)um{ zM@A5j*Z)hB<`^b5eTVi~jCZK{^pozJJEIH;UcI<+j z68v?@d;KN?{9xkygq^ChG7y0DOsz>srI%K|u43R5qBia4b!O8-e8_?I^TL9i}+}jcH$IMtezU za4M*~NpLk-&L8B8n!yrBF1P%3D?ok1i9Vil10?-Jc6<=vmssjXWb-rN4UZBG>lc$I z!z^qkxaW^%DaLvKTh^KgLudRf<^NkrT5+mPJDL~UO7-`gNyfBMP|@t*?^!*@_i~Ti z3l_N}mhvjNY_TS;yxdY6xlhtdA%n)cGtFGYseqZP6^O-cXOZ<@g>T9(g-LrXAPcQ3Rr5SJ-zXp{XhMNtA*XvOp#fU-pgyDDv#K&8;n908e$Y8 zog48!G?zr&R%J~(NApAn4VfecmH*i00Ucd}2TkbV)TDi|OU}fkr%+w;8N<~A^B{^{>=>p|wAyx9@aRKmQ*rDI=^0r`$uAPsbUF3m` zE{%lu#XE2yIO~Y}D{;U0jXxt*Gm7ga7tp{x?C4qM0uA<>8QxE~v$x}==V4O6Z-e4u z!~@as)3@~NsIMOkCY!0|XRov2zOQCyued|!8eY1uYH>EX%r6sd8hfEF=83>_qbFWu zlNDc5bYB{1fHmyI;P<;2Sj~jE(qnHFBfo#JXb_a!gGAK5J~js$xF}DSfbgXo0${wl zn`*G;zhQj(lb&Y@(H(m;5Nk#F9So zd|f_L*8@aY28s-m(P^&yl@RdxLF1_@#J3Lo!+(jxUpnhQi3f*stX{N3(Lz~BWFAd? zrh$w{({6=H7B;-o>8(Dk0YiPt>cYN?L?56Ho9nRLBEdJ)mp+A1L4aK^k()`_JLy3O zzsE<#1>PE^@2-_4kaBs4>ITt(DvqrCkbVnnKt{=QIPm1?iSXIti)6Vm;aK^BS^hJaL+fdCOFP^$x8)cPUIm$d?Wub5>fZ2-`+tUZsgR z@+->6KitPda-vb|78qhKGrEYA03_QKh(|`26Ws9>D1x9OVqhDdM=v1KfUrNp)2c=B zN)8a$wT1>l_PgSI)T|7D796ffv^+&+*!V{i{)F1nF^c{=2sx)&D-i?bEGzjL(7Gg^ zxA9g{`b#*DO#y*iWUDvQ$a!N3O-`^!y6^6L59*v;z-<1KZs#s@sz=P@nF^ zjv!o63z`%uVoSNtWJWdF-ikG=PUs+&m7Q^Pcvv|FZvl&XHxyyWup0jlbMgL>^$G(R z(c4mX`vWn>szv?E+@=-JkgQilughFB&ni>z<6ywWg}45!t1>B)uVy{dDPjl?B_N1w zJjQARUGU7kgGL|0j;Ornv{$1yjT#t4K_=tas|m%A=f{u|CNh)OaYq(=$~|qvt%#M8 z(TI8%F|3^B3Q3|X_TREH!FJ7WJxiRd)IJ}7`V3ZCV)Q(br9APG)B+!^=#KHE_EIe4 zn^n<%$6ncPh`LUvDguAEg6%15_6d{=JM$8Q8B0=vfL%Fam*s0N=GxM-QupAY%;gT2 z=MFelulp>0?}c3?T5dXuS;-2z8e9QF*Q&ha*r0Bo8EJiB?YYeRha_87Nk{o&eEatr z=xwtfxoyj*cit)iI|`JI1fUxNS%ck^&xx%aWEl7-M5X{&$O{G^?7o?|jHzrYRbl^E zRn|8z>R1P8D#ejW#}pfwojM~181Mb)^Dsf(-rkQm*FS=qI0>uU|Fa*YcE^ypfceN8 zI@J7cQZ~Fl-u9(%*70?-y8!K~iZVp&+I@*AaD}vFrzN2h$wOB=L2js(;uExeot98@ z1jyU7;fbYw4viI&?kY0LO}IQ-s@n7Baie_>jNPXYoUJR}qrzLgsJ=>mlLb`mVeynx zw8ty>CY-Q(_fzon*UjfL@$@0RzCbSdVq^KwxD8oCiQm4k6Q!Y!^J^v+(ZLqA6~NoP?xTSbx$_JlB4&Gyi_1@8-gE$H>)*Ayz?TH>#(PHL6GL-go zXj#7#$Ef=FZa+V|dvBpICHW&d8Jw? zp1}r0Q(G=h(~VbW>AxuWj$(+K%#FSLh1`K?Z8I-67As21370uMjmF5@N@c+UX{`-< z*_4oxdf6B)xQe9x!R9X8McSZxf#nU`@$8t^hKaRhd#}$Z^}MsA9NRCkrT0l%9Y3hY z%-xB2pN{+H2tnVD^jpPUi)hRNQ1O&8Rq5cAYtNzZ^i#;>Q*XkJjNVm|?6X7mwZq7h zw1p1^j=^bk4Vqlk*Af!i8@2OWA)8-9bgt{*RLaR){!hPn8u!!a^^~OUlOO}LQGOni zIMcHQ9B+zUuI%efvBk@_E%)>r}GdSESNdkIXi8Sv#eM~s5JY*WIH!k8irhBK+ zJ|ooAI8X^Q;uei{=mw=f;mt-#vz5qk26zfIS*2aXBTO3?aO@aH$6S7=iz!zB94(4O z;wcbu8C6LBmyS@w;GKL0#cbWD6Yv9EAPHyt@4j{f#1N*XbNvkQ&TV_+Cc3|7Jz~X* zzS`7+jePfqJ}?H1Y9Ot%@w zN1xc~0R*b=HL@z|2~gjms1T|NuEI}m>5n&$2+8ly0k?5-qpp;Uj4vxKm4tB|g8R+v zIh>)z(hc1`E5RKTIP`J_{PLq^o*frVNH!WVMs(o3aW+2~y;Q)(1(EEq(S*8nWY>xzCp zf_K=$5A|lDpm1a?z*BiZH*nkH1B5}@io0M;mej8^MyLqGYd=Bkc*#|-?}6A_X`Pt* zZ-PrpXq*Pam4%s0%Iqb~6e#%g6_U<>{zHNSpI~@OKmEu)b=2QM6L)^0^2|b7BK9x* z!AMHMd|p;oJ?h77St)JUup|yASkPd^^2fS%vBPc2rZ03FDnnqJqvx)42Pw}f0CfYS zM5c;bwb$E)({@fxHS_{rCrGM=_o_Gm^cc)pdo!?vF|TmBV|;D+J`ZYopI=;2$S~T< z9zTl5Pkd!c)G>DwG^%@_Uq<(}MnMFNNlPC&CoSOe*Kj3PKMH<7A1^s2;%qi?Ebo91 zeyx%vF)H$)fvY+CXMjwpPvr%8iwW$ex#B{r!JR->2!?2i9K2HH5$|(!V88a^@dJRk^)47FWNxm3b_{vLAMM&}~@iM}e_0pS4$x>F|J zR^5VO6sf>7IXeO0>Aiv<)@epwFL)bL<(=`?h-5FgDIZIgkRl(NT&v0)v}{h>DLj4M zGdbE%*rI^6^y^nE?#tiWs=5S+EN+T30!-XiFGDc4lM|6%zN^^0QXO-P)K;sf< zl9SFgH(aWvB=%wEBYFdl$yYVvW+oEhICI1oD5ssp1hUp!&1*W}K9=&GnK1FKV_v@- zP))jL^Q|LUA5O7%vPjdd8R4JXGrtxklztqonLQ7ym;;##dgY7#?AcMIOFdltcD=YD znzpz~H8N)+W*`Qa| z$1%{)A@$U$4Rp@iy7y?JD!$_#pZ!$T;Uy@oa;~)V9a;g4FxD_ydHVSqf|@#VKb<_Y zkySV7Z9G4syH`?8bQV(C>X=qFU+XOf4Nk}Y1+MV)t$=aBAVMck4w#$lWAM%7^Voh2 zui|U5)|mGlQ>y!X;EH>6Q^&f0YX>)s^`@$gr{_ku_C`Dm?WLuSC*oIFABNT;zp0}P ze1qgkA8Wm!nH6kOH_w9^_xRCN2RIP2;~!lC|NN-8dnGLG7y;ja-u7<}zDyeMjsDBn zJ|d5zCtBtHGONj`ik4_mg{HoDGDEv?5tY(45J{&2EVV1SYCvpU7DP7yg&^4_0>OeLwFWi?3Sr15_I?A_$X2zAsJ#3}sJvVZ0z38+%LJBYaXSd^3++lgm)o zAp3EWw)9oLd&V=3RsS$#s4^>>SE%3R0pFGTnNfE5g_=&XkaOlj}q_i9n@;|I# zk4-B3YQ-L%n2M^E5H^cS+3Y28I4$H38QZ9G(G~L`T8@6d2A@}Mp~)$I38ljXwP!=L zg`QL2Dg?DX_b;vL#v}hR{A0fkufQIO$AF_UT6IQd`dWyhy#hEJdMf9cJFU6?p84P+*TXwA<=N1-9Y^% zx4}NNvHH;voSn4RX0>rwszYJAZro^(D?QzIY`Gp0>beuoKP4nOFR0QDj zsZwPqSY3{QD3CN2xj1&CwBJF^$)h64CtCXL?+<^+{ZamQ>o26Z^tcjUO(DQGvEb<-zNB66w%7Dtjftr*P{x$ z69goy-9_MdS}9WMxw3RD2vuE!=czSav$xCdywx?OSz(3sb<)8BQwQf`*6Qfymw~=Y zS-76q2`Mw30tQz)39mty0Q`h>2 z@q9zCfdh|8q877-eEXWcr#d78vZ*26-bUw+6m2@P9 zcKh`b(V7j*bU*E~ba(vF4NqN(^!e@2%$0^Uj*R(Z^~cXYVm-zhwVFRM+y4yY{5AG& zoey`2W4+GAz;mX#>p#hhdF_HBc?S{% zB)w4&@mFFxSBbbvpN5@GIZadH88=hl8iU?H7ele1p+33_-W1=BFMhx8aNR}e9%E_9 zbRQ91V!@ox8Wb6*j)%KPepJoYYPd&|cRnlSZ}8oGYCG&~-0)-X5+F4(4dFL3b;q2H ziLOt##l9U7uU|<7*_ZM>3W7e{qIDh&epcEnMTFIczB8S5w-I`Ls-d=r+TnG7@~mj~ zwbd6a)qcAIO)ut14eIN;1^sHd6!d)F z-TFfEg8usq*>(?LAoudiXD~gx;_YYH%f<17YyQvSw9i3o{7UEg%WX9Gz~{-^&5P~k zh9U5G5U;_pmuxWyw5h2~*t}#IF~)8!Da}=>6&&PxJPiIeuVh1u$;kU0!bHMWaJIWs z-OszXIRE{6n_SxY-NQ5sksy-oO0)90eB(JzEDLo271(tU!FN)-N4Ssn*d{!6s*~vL zkzX~^2x>I+k6CI2<}x6+y1HxGj^+{dVzmdQW19Yd zyJ_VG(s3j3iiNWc^$@0IcmL&on}jd%<5#QeTpM)SSFLoXqP^=47CB9wggH;O$bZQE ze7~Pzw^=JqIxSf8rr<|*s|hC5^MsiCD62{AiuXQT3N!RF1hsj{QB1Z_%?ihz{w%K8 zN8)i4&h)E=L*xj_ndh2f+u@qRfLVoB)XV8_D7l|tLwavw5%IU%$=i(FABd=1WIwYd z((Jy?d(m9~?Q8q`yLx@XeqnYi{?A#kfP5|c6S980cRy?1oemS0G{5l*D?Z%@Nf*O% z;vO45`(M${ol{y6!t355L4OLS)d z=YN$bl8)Vox#VTs^8#mn(*on$2fh!VA6dW{*Ga%b%_I(Ct6f>mZp1+}NmVA>Rm7cQ z##;BhKjUHal1wujlG}00K{Nv6<)Z<^<>OH3*hp1|2kSnY%P+^gb&-wV0GW?6t;<3Z%M$k%}>XRxr{5T3v3j|_2AM1wcu_D%>2J< z!Geb<`S2B`tt(1LhSf|kwvk_hOTn}+ zy`|#WYA%5!C&n23=G14_7@bDpZCYYacvvJS_84{?D{2lH*@oe`mH8Sm^2bIP>ki>w z+G0;=P9!I07%^O0psimPebMFIo}uEE_UK!D%`7I(Mc5Zv8e7I%Wf26uOt z;Ig>8EbeZX_xo?vIXyndy3b5icR!6@Mz=Dgo;c_QPpXE_^RDFJc=j(h)-uZ~Lt&b{a)65p|4B2^p`AVE@QBM%)q3 z|H0y3!|x23%-Uot2xd}f|1E#fZ+N~4Jk0~vRbXl7{S=@}k za#%Hskat@UW z8Sl(z8JZnp>tW#nL?EWlhTNZ z@AC;3G6}L-Adcud6HivD!U=HNKMAu4;>qT)z@Pqho|g>K*9M#S{vnu={F4_NJzIV~ zFh9H#NN2mCzHoXoXNL0a5xDbahN@hDS;dj>yU%!V>d*6r)kiGa5)KF`>b7{W!g8~Q zb=N0^y{G&1qMaAu6am$xX|lP2QN_%4q5cD9AqC%^CNtD6eQ^o*qQnNJ9mU~U85S*Y z<^q{!J@%p372X$1zAtiFhUp7@#?J;sg-_U%ei>X@Ia7r?%Y(}|A$K)gd!{v96?Bme zhe{urHAP&j8HrINo7OI-`NED-V;fHqk8(LX#@L3#u)P|tTi5Ugi%HZPuB;jI`NATX z@P@W zY?Kc+&wRi6%+Mi?IHC9i8{0CSW6OU{k#bQ!1U&2g=6yqI|20)|vMp0NrUJnd6pSCE z2$l?tZsH{qf#84fE6z+`#JO~Z|2rDg7_G_iyp%Kc;GmKtgz$X^26p$TH}_~aai}&M zq`DbpyO00)e2N_R8LcQZ|c@RxXEWluU204hdmF>D- zHfoeS@0?a8=nUKkNS~o^pfR8XJ#;D#zwSJXQa8n(VJY>(Zxa+WyP$9sVcG#B=4knfutI zer^hwDuZneHZuC7(a77Ahd)W7tP;~8cRMlIy6r&e%NNkaD zly7a2>Sp$IOgJ?)*OG7yK2dw+j5oz1TfcAYTg#4*gtyE58{2)* zV`jb(jAL;7@hLgn8;VzhkKn>eLAo%Ib%A|XgV52;Pyx=asfhP7c_QeN67E6#@-(Uw zLpVpR=S>I7@4*M|sXc;n8nw1?ej^abP82|!8z86YW(Ut1(0My+kNTEQmCLTaC08bW z|NBHmCGX#Zd0D8C1G2CZjv9Fy^)x)Ex~v-@(3u^KQIeO4A%$FAt^zARo6S;Rly?`a z=+(+Cuqkq?r|Ttfs9dX}n~XXaQiU;#{bG?a|AH8ojdr@yr9VKbX`#m85NLUg_{(>H z-;Iv{ivHV&V)w;AG^fP@wuhTlSzMpgGg)3ufW}tUT^3)A@ahE4R_s-(Ye}1m)w+}+#+%;No#G+X9sA8gMMNJ2y^Nil z8JTtl!B-)oM!`+a469wMVdvcJDJ?RZ%hIFm)RDiQBVs-lpvBiYw=Qp5ISvihH|+4y zwBzpV5V&BUZ}Ul^IerzHD(3F2Un#S>`<)m=EL$%)mr*Lt`GKt5NaBu}^x4a+W1CPm zN?=sC>QcVtyQG5ZFEfTyr^6LC*LJiJQlyJ%?GGqnh0xpP)x$o#{T{N7=3Msitv0}q zaN>#YPP=mq(XK=W3J$Lwe;-UyL+>@)LvS&8N}5(zIs8g2Pnbx_SPtioHUOJ#5vLfY#wtb#>n zqoSiLuvI_PK?%s!XN<yOka*P8q1J>{-49#)f=P70mKj&{P^r}j%P2_vr5s^*e zOKTkFi8clbRb!lUiwFoPP1Y{fa!%LDLZo6@R}#!7p|7IyoE7ibmG11oruQNOga1-a zX#@t51ioIH>Rg@h2xqe;p^gZuC%t+(FLfv>{AjdBJ48elSbwNx{{L4%Fbxx1@(Xv! z%RRlIB+<*6ZzlqnlKg?X&yxXsOKR;y^RE-TgEi)KATVSzbvvJ$m7e?R53cMupL$g= zRLeTV3zuD3xktarUY727*oybP>5T5y`9@VweClo6@kyS#n7Pl|n)@@MZaF%OuWD9f@NnMT``{?#NRSqWEf4fei9(6Q!7^l<#25pEzJpEgsQr&6FymMFE`rSm-O@f41y3+~@;O3d!9m}) zv|15iwS*bgwyvXgV+@+VaaURclN= z@`xn0)pA1-GU(J$6gU*8NKddmkj={V`-3$VPjj{0(Eq_Ofu;*~qp_d`E=clA#%u&* z)Q1FP_EcMve$f|t;+iGB1mi@j4o8Tu=Od2bc@mGG+voLL~|kOcQd@MIt_eLNZ%?ZT?Pe;nk7-^)@8WkV5?mBbJx=bg*F zSRRfBc#_q7P*yaFtnZm07W@~>h|(jVT#Wt~olAkT?89|(;Y*O`1+0>MEje@Zs-cA0 z8N{J%7#d2<_$GZ#d94(R z8-cJr2eH^YJUsY352LVA6$XfdMFN@v5xrwPms>*$A`U|JkIFNUey!Fl zi4`uVR{6;|bB*%ojiEiTTv)``e&C5KYvy^U3UhFQ5+r;^Rc`d;a|NPVF9+DdA`~== z_b9NjCs7wvN4La?6*I-7y4T`pxD`XU1|&V0J`>%HXA1M+DLCM#F|m)F=bjpxk|Lav z9TD}G_Y9d$Ir1i_9|Y?ID@1wOBqhW)tT`-L{?K>OXi>A5vny{Fb)xJib{LM!AKPlH z?xYjvV0@)DX1Q5HSTrO4W(6h5V^1O>FR}Y6o|2ap>(lw)To|}ys_qGdJG`OF-Uyf8 zKYvIcFlEvSA+o?y;5>ST7{M>*)j?uCRpWBrxWB=j+c(70Xc>sFd`XpV-#PR8aTh-T z+&NgNpN8YrufEt8=ad2+$<%W4r8~P-2QA~iYo3=Jwk5i;=s>DfApmitP2CENU;gQ}3eal?`HmZ8z zGPA6_(W@vh;RC{%G-_cyPDs*0_bp}V)JzW)L7DyPS?*9>Pc)An z8EyDOp{;eup(q5oHMgN_ueoPnMSjU+tI=QLoDUD#7?|lhh?{;lsjVNK{&WsGD?BRJRff%h{XXOxuY9hexuI$ zlP^x$iE6?0exF?jO1?t(O0L~K@RMa=w)s@x_VWN5`_pEAYPRN7y23Ob z?6bW#erP1L35HOdT;U|{LMyV#pEp#3+&>*TC^EAHmYbh{X&M5didrfAhS|5|Q49

~>`-t!B&qmW)CK!gslUKT;X$c5LA0E6F86Z$Fy6Vs zOF?wD;SBt%Yo6F)vmw6^C!H`|{vXe`yK5KFuSLchr5hAyoaq(zuY#0hs*CJA>(2|& zYcqJlN}@zn$$TPQ{69qLk=B~+_@hT-qrr&Z<`1J>5*%75e&~LK*=c#OU;5g*`Gx)u z8JyWsAO~~cZL2|tSoKdl>&=>+)6qf8J9LT9jbgR)gts?@<8R#yOwom2_}^-A#>I02 zG+=Gmkg0HJIreOVp_FU#u9KdYNlz?VsBGS|(rYaMBMmNalj{F|HZfHnVV|5I<=0{5KpP>7G&M48#G$MAjHi`NwwUn$7Y>#&_>X;AgGY1g&fk!D6O zxQi>uE=%>ab=Hq6VwVt0UD9E#Yhp?~`wB;}J!&1!ta6PI>3G2$eMNn-o1hpEtr}l= zUA-zOO-WLwnugx5VxMSX#Y;LM>I~T!gey|F=r=a`rpxuaxvC`@9OjiLw6@htg6?S! zYl%!8;xrO3aFLEy)TTg{837)}%?^4oHb2Cm3`p71xj$qv@HHo3Vc;9w&mXK|GkaJh zc{r;-%&g1-&}!u|x-rHu{2`n6iMh}cH|n6*sva4183UAinHJa#Xl?<|E(Stbz{?}f zYDC1o;0x<&hiGRqIn+FQhy>{meZ5JC>d%n0U@Mh+4HNjK5NmAHmdrqy{RLfh6B2Hi| z)TwZWBJ)r3?LjW*nXzewbOCUS#0Ev=bQi!N0wP0|yAoq;pUH+ej!U^K7R56YCN~e* zwI&p1kQ7}#egihIh|D)md9SUo>VGov6{UITvFU2|C?WTLMVpx*aQ<;6oqe$qR>@0D zqjU~9l9EP)A|y-}l1#X*If*&c1Wm@MFV&gQu6r z#->Ink{d1>k-R*!+fnjs3{NUqC-k6g>OrxfWUztS_aA~tfH~?T#+=ln%Oho;3cW%O zmc*!0mw$VnM0+;`J%24KbL1K8r)t0g8dk_5U@J;~BqqF0L)wi$5yl|CS&5HGHYz^S ze_`$RiQ$g8%6toy1~RM}o8N97IPHm21-JHZ*c|MrMnh96lWE2z;hAI0skpDh)O#@I zSBjaP+kfOl9F$$I;-&i|v-lOq&lpCh{g?`lS&I5Hj`LOK{$>_^3_pE_G>|i8-?}%V zrPy;^12Q_w^8-fP-UGdDc2ZFiD<$F)z_UgKAQN zZK;T$=;u|1V6RF?;|cig1T5_!1^FJq&66c<9idPlw_)A}W2F${8ggXvZqoB*ISK5# zEEtngLrRMLC)5W!P|%UlaDH?Zy}a+Xb2MHe)^h5;xz9#8YGW5wBO-D20?GmN54D|^ zI{nhmDgpi`jT-^zRk%1Zu~p(9Sw|Tqzj&7n?V|P)Jqz5*k zUeI)dxBD@8L*;LN#Bim_U-o62-kTP5AFZCrwe;IyE&LEDRhixY!e+cwr{ZSfu43R4 za}HO%bMyOR0Hph z_HeVj*)Q6!3&&B%)I0E54nZc?;IGcLa!MkMYG%T{g=btJ|b!M$%S0lhw1N4}Iqd`9P#PSy^ z)yQ8EJtVH`7x@yVe9EFm^h8BbK=UcZmJf6LgwS`Z;dsV(>875i=*#>&+nL&Q@=Vsd!n}w;=uBVD^kVTyB0$K2s zc|@8F7~n$rTtl0MyANRk^sF2Lgt=oW?UNzj*=QDO17#pKz4m(J>9+HOTfSU3-&h`n zYUgD7dE95CTP4=$Qc$rIS4M8t8$%a9+wT3FLu_xvCRrc6aJ#}`lQ-M(_9LXZ_4u}M zYQ%sU>WUZ~BPzodh*y%Z-=!wlM4k=M6p$BERAP&IScM+a1po;cUCtszp*WeF#ZNAM0L zc9G9ajqV)(aGx5|d43Fv9z8RcBzOL{tY2Be#{=73_vgD=hDDOKT?9TSgFMx^c}EzSa&C&!=p=ur=C9vq^Yb_#QOuO9 zBRIEu*nFO={8<@Z$0NNO@nKAT&8%^x+BtEeS&H3u{wp`(H8s=tBER+VUvq37bGUg6 zLAYGzCwc*()}h-XT{(Tgv4wvgC4XpQYnoy>%!5<(Nf#^W8 z1?}IXLuJ8ko&4(U;=v3y7CY%eX?V`TrKR7$s~CP0NI(!dqzXol!?P`;E)4&=_?t)9 z8fRz0^d$b!amJ3$U0NzTQ^}cvwc15GVWy=Dk#yi1K$j$YnhH^n<)_(>u)yCGpng(L z_OU3BfOqLNV>Vz?^kaybnrZ&h3WN!Pth6ne8sE6v^FJG6e4wo0p3R{NMU%LP>QoXh zf3-$i@=lLbfD@oklZI%K_{=%F3-vW+InxL0MY34uPV0aL(Bl;_uOH~${XfjMkyc}# zu|y|13rRTbGXkH(qLE)*5(}n*t<$Bl!$0Rh_&M8Gx*`F6cpj)7g^0BpQF4f@QZ)l{ zy-`LHZT?TIts?dl*ZzXkojG*($w?APsJScud>PC%0ju50lU~ z(-^$n+Dj5$GKH6bg#s3jo|PY+F%s=>*YMd%J5OhF{Ku495yYgmi3v?D&HWE7NZ!!i znL@=|lkf!kv&i1yc6dIRCqIlcW_=>`*Gzz#8}$YKqmL=h`u@V~)bp<{V*Dp4c_$IR z=Jr9Hrzu(Vhon)f6eIzac6^t2cBrnk>crlX_5oNzxrRqdB8+#6t}#@fFM~LuJ?Do! z2JQMyNk&tH`1gDgORL?L z=rdfUX~(Jvsu6ZNqU+#31((L6EtWP;vBYpsU9BpK@qi*74^8RI8zbo$g)TT3s`PJR zhS}Q-ZxVddwl+LVn1?7j^_~b3WzhB!e8U&+Yb(zgMM-PJtBzL^H8=cg!q7HlUp5i& zfP*fFs%s^ct(Aq)JoJka)_nDKx*W#I(TaM=nX$SgdezP(dhDjDum3bNdb$aPQr3{$ ze64-k`u?HyncZf?w^w3b_z&czfsij4bpQ3EojbJIb2m4Y$2|5|iRgt0RZ}?$2U-&v ztJvIhxWTjZarLpG#n{qJF9X^RiS%`*zrLk!p7VJy+g2yFm}Fdx7;q(54yTl!c-kZu z)^ImGb0+)195BeZyhGLdn@fOh0kmyl&1zhO9a1vJglmke7AM*uG)x~{a~dc2PPb=G zT7^mpQy>0f8#*vg_GNd=R2>0?D>v;#YqBW!lw&fZ`!Qg8Q6;{xz{uxFxkeBoqIQ0wW4MdPqF2ThD;sNxY<(z`<1oN*#vxJQ8`H4reVlr=MB#2Q{$e+G}-NN65zx%*XS8`NmON@874^BVw zg7C(>8&`RZe?M!z9Dar1w3)SYikiNqNt%uI-(c`|{h6>!2U5Q!LXZLPoLIN#&p761{7HA|VVPjS z!dRbgyAR3TPN&B)d`bC=_f?wMV#M-5Q4npEPE<#i$z{}l;N7^<4T25g^eVNctv%vC zacjOOqNW|_?z^18~SO+aNk<&R|dX%KYC5hU{B9b z^IyTZf!|%eNz}amvd{J@+17!ysLX(HH8C zVY`a1V% zFR|>uWN*cI-rE;HiR1>#>jk~K=+1nVvwi#isljMvMb2I5Z{Alc7iErlO9hVQB4_4o z(vFmN&r?hD(bk4y!xin>i*;=#H}6sR<;Te4Fo({No%0)bQIiEQlgI;;0LV1h`T`9M zFB0-W=Yp5}gaB?>rT%{5*|e&#@8}&e#e5$YM;v*A7ijVSFi-;h!k005iQdR9$-X1K zkrRlU!@P)okDYRU2s0A(#9S6<=r-UDfj*-S|~ zBhVbDEy5%uIDIk81Von0?#j~^si+{*L>A~Rp*Vtok!(^eH3CB&;uET|0j(VO(K7Wt~!Go!S&9 zUi&4MhngH>-jeO^ZD0_{(`B5~d=HC@eU~o=Dw4Z7&3e!rGVKY*)Q(E2(||jIM|dWB zzMiNF6Knb7VLV|f;^h8phl?}P&z%)k=wZPqKZbLr%`FJ#mByy|t_j-tESGA|nKy^Y ziPb6$!a`i50ha{pB}2Z5v{5fh7L$qPIw5jOI+N$IVd{#Q0|6T7yjq~~V3uSEugD5j zYy4ClrVZsy1E48UcX|#^T0_{)X`)UmjTc~Jfc)6!e{ur2{e`2h{=#-aS6vx#T%P#o z>kE@>CgnZt!oH>3T%4${a zL<{O{OZ)+rHY^OqSo^Bh%OY0@xgUZ@IExbILjs_HoWT+gb3!5W%DoH#%=zdh+xbV z*R&&jj%>=}S^x8F#sfdYxteqfa8iS-2jY#44qG2=(w5HzfFJ2N?X?=M``NzLO6`L}4Wlu2)kLE7e;oMOz5x-z0WFeXhbOi~? z*Op1S;`xP|xWV$~Yz*jAA$M-}3buxIi9-lQ?ys7#qXZ6@TaHwP?XXJWRN)~$A${gV zaOUt{7#N!N0bGDASO}$X6ekRWan(f?VwUXVI+O|QySFFq)6xnib4D!0=?yvWHMn!L z3zI=B7$Py@kT-tEDwr4!0 z1g=Zn(1XsQ=Z;-t@OVC=00co?L9AG>Q&xri99TT5m>t;=8vrTIlXYR5qd4wd07M&P zhTcIpDytF~ohc1M0U%%yC)yNx1pVkjA0PR-420N&kR8X87=4C#QX#k?G%TMPv%;3{ z*vu86pu~+n!0$f8B720I4{J?fHYco}Yf{#DR6?Evj06$@#td=Kc*|sV0J7jDoxj^oCD-VE@1+lBFkkJ;gKJ}fVeR` zA|W%vHr7UmuJ-R*1+mas`cG6}ii~A)wlJ9{4-jGo(Bhf?nD#?yK&;^G@tEjsJxcBD%MCUQ?^L+a0a+sCdjQIS zsI;xY5GepFr6(R3@Bdovpr+*k5>RS$#;^)kh|Gfsjl8t=nNl~(pp|ezksDJGDduY^ z#17!ZOK~b$PYb3Dm#1m{0|5e9Kb597RP6X}^2^`Yfb_9Uf9CT5U;)pV#1hVe;5on~ z0&nA9HktMbaMM_LgX&2@sRG8r41^UA z&VvML;hgc;)8`;GS7Y8k)%N1dtSVo#w3n|KaJWPR_3-XGlP`Cn@<^Zyl%9F~1?Z$6 zK!Cbm+s9^Kgc{q5|pf1@+Ej9&@bG%N5;a&{ii z0v9X-`uQJ!QSe4XEI|htA6%^qAf^0R$`$@w%Iip{DL`4kJ6g~0U=KhBFk9~9gWaS1 zBtx12$!{O5n1Vqp`ypC?fuX=kYENkJarlSaNP()bUh%;Cz^9MUe*X<8=goxt0*wN* z)0w3J8CV0VyW_FIXCgVIucC(oBQ{PLx$(s)%CD^*R z@Uzs$Stg^WbbNFfH7x(KIXx59=-5ADsd8g3K7>A^QUSIvT>5o0`oA|kn5+RPRu_u zv3zX;W6y&dy8o8U!h$4fP#fB2RQId)4yW!Yr(n2|A#`JWPT2F0EC1|9I?8v_ z?M7@)O4&NvJuBXLeiLQ-ecQ*+9nsu<_y-DQ0Z7E!z`V8B(8359pLpgD#`b-usA74A zH$Qu5mmLyw?sZRMA=LkLU=}687v9*;^Y(djR$em)*fIg_IU7vKe#_SE(wmWnrA^=15Eu-%C$kB!t~bufH2rVb*b-I zaY5tB=A2}-I@I70|6eCxfQ``8i>8 zB8HbN$kab#X=U#>BK1iis>mJJko4j$<||Y&bDIK%*}RDQNOoc|O0Me(Ebs`b!E8hN z`xnKpbqHgaBTKi?_iB&F!WsjKp*;Os55yeyCV)Rt>bS=U7+rU z(okVQdEgo?*itz8gav#9DVkM7T=I86lUT zQ3m7&Jy*Mid5Z864;=@_<$~EnS2F-W3FTrshw~e8ZP7~kj&rEBMiD+`qp4Bxo{%;gp+=BSogDeDxd@E)~Jm-9ln^`NlmH?el`q8(itVU zv%Ga=b}6=l#?r)YWD8`0`R?Dsi|8zr8&EC`LW4&6u&9#F3R<#K<`VED z&(+0jfFkI1m2v)>+xMsJ1K$IdU<8TE6J_d~`r6X0$Bzs>=I0KwPY@H}1cTS34Y<+=Nr8qF>Bni6v#oKoHdCKlagnKiq@YjN~PR!W^3v;9Z=u$ z>gas+z13K2eYJ~A?K@HvY^xH8EkvOvaS<7F9Ko63Sss+qo4S}bwj!1*18vjowGeE} z>>ZRfKqGx4y;XAJ-6#&4%nOcO!omCqJZzL&BSCGcaf7+i|3GTC#kf@t&NIc!bNtO+}B)F^OiqI z+yo&RLYXpeP62w`-wo8J&{AuHdi=OI^_ae z&^b={SVr9uPoG0G*9xlOQYUO^T1I|X%lpX?rUPMUkRuf7MszrhKbDn*M#gR>1@Bq` z6|Y!jg}Obe%O{wr<5YS*-YW*%Txtc&gZ3>Ka11?nF+gdu@>2%yZCEm(F(`%PQNZRhexY>&Wq|$R$bxF@J3{mm@br|+S zx2^@6E6BMlX>Ss)RFUc0AG~l-cEufv*^-cQHaukYCeWu-v1M7CG`ql}YHgV<8QV0I za^_C@mZ)!@lv+8qpDJ@BX%WC4rcVjRDj4v$O@$0hBbl=Jsaksct^b)esh(>GwGmhkh~zUG(sr#=xrbAc8$knq9~JZPP{cCOU215^Cel zGbxlC?fg1xlXeuM&DX8{T56-3c%<`*R^B|R$DCquYokx?G}JF1G1sPi$#sSm1hw@V!$|deq|OMXMKc z!_BwPg}_cof=uBSp_1dl)CtZ~qhquozzaA1abjl)hR2TOb;*UqjuO09;02v5R=}U5 z@s&Pn`LVq$ej2to7LZuhu?*)O4sa@Sf{Kosb|lZCGmX{IFvq*H!0gal`#R+f6f8Ld zy#}!+LROC8g$HHo@uZu>bI9V`Xb`5pVm6c4*0{QULv@3VN!tgZBt{3VKJ5je5-RTM2;H6Pp zZxjEIHed=Ut>pe1@RGa{KXpB25L5)|lC6xz#zFAnZ1#6R(p~AK%%;dk?aOoCjexCI zB4HUS%TG(3-XVaZfD?jsCa{MK%1FbDDv+gYrBZivGT|d)sP5o9IXH`~EygYZQq!tY zfBcB@@htbaxho(`SJ*Cvk$sm(<+cDJ25AcQEnNq`g??&XbBjx)KhP~*Q z4JCTJU7^F!Hkli&r0VGVkNJ>4{J&n?JXf18lrV|sIFYAJfa=c7_8TK+lJ%8V^tmCCa_244 zVYk{r_pAR1@iNw(_=GHK4h5R7Z!vY3=gQW4CQ~7yl|23|`qrNFSue{2g=TBRP0U;Z z$1J}0Ml*G1+p&NKi0xaFEk`(<+jS~cucke>pAP73&9m)%i;tRM-i9of^`_D7+VcMD zoI1jJ6uMpm#PQRWR3qiHGs@7}jxCVnXkMc&$4u(Rx~a#1nTgHn4$6+z)MbsfnRGK5 zGa4d@qqtCo_16Gz1 zE~E1NG)4JB3|xn<&oX1ife;GEUQtpj9}6rCJz8Mmz@)8BJg^+*w`h_024CNVc zZ47q=4-s2e0RjE>w#zC{nY6qkexK@nARRE`wYv9~Ql&+$cuo@A?6)mJ$~v`6 zGTD58aZaVZw&QXy*lE!qoO=H-WutNu4I?nMgWRN|#RNVU=yYjI(zE*XR60oFmX2wT zIW#}BKdfvUSDb5BN~`gx24WGY6Yv;``3;DzGZa8hqA)e9JH!$jIT)Xo7Rb_$XSb*j zzDDd|0V4*(H+*)6&f}wQ1u8ycee%qlq5%q$B{_hEyD%){>8kKR=Tt{O&7Y)TqG@hw z0oR{z`LuEyf^Cx_{36LkpPdErMyXoE;to^;^l0kELFb=+TuQ5zJ&*Fay51skY>SS{#)sP>H+ijJfkzBJkK-%m1jNS)?wP^={>YgSwmTN*?^}N9bOO$-*}_E6u+N9jnOLg?YYZy`b*qvon&{J z2iE@xtaLm4TNI`py`L_yDXOcYU*})LN`-rL`=%?S9tWvk8%|Y7>W1xr)s|C|dqulE zaN%Dn|jZ~!f>h*6Tcq2e?3A}%E*qrV zZP!cskN2gh_0ZniG0$P%IH}jgeH$?CD1~zSk*`;h-7$QtFj+@P6}QD6k)_-5{ZxQ> z2c-0un7{bU2V^ed5h~oJ^gO2`n$jlu%?DO`59lr%FW{-y)jO4eP0`QE?kkVt)a$Ok z@tEf#Z>H4isBg^F>++onz^25F(*BhJH2O=yNx!Q8l|E99?bEF)#!HrcQo75|p-0vV z_tXpWVB+x=1c5&4c10uZpOf~8q>MEPmgfje-bLN(WG7R)Fnk55HA-EW^R#mUpBMM; zKbO~@UFPX;%b@ApvFs6t!JSXEx`pYDph=yex%d%2nd;qG1$1a?jIkaVQ{535n!PPg zJM!d6EUF<-mTo{Vx&-U?*cMlj-r@MJ`M|V&_z~@$OP&Cq{u%1;{Pm@*zCT_G^U31I zbX8kFjD+p0+-#%b!mGBs$dMYRjwB4z9X?NOZ-{I{Ss4{d(Zn;@*fm>crBaFP`f$p;F^_XNV;y98Z z+E=-Q9D}$XhST-+j<{39$c)tkyP6xZE#XvedbqRi*jMHfSFdf?V^f#*o2$X_s6Vs2 zut62`qru|s3t_PCz;7<++T%wBs`C^06h8q!4Wm(lU;Z^4$mLDsXw{c!NXPm%KRDkv z+{^ka5v)l!u5;sFEc$j|US9~XGP2)w-;jZ8Gm6RY0&iBp*UCJacLeWS(cp@IYZ0*g z7uB1|p6JgbloWn$^W=@G)oZHAs27B!7zs{N)3?R44MhU)P(orxy4`I+1y5D;54{!F zJB^;iqV1h&EbIGk-*eJW=WS$*(4&IYe`RS|c zQha&d)!!x(MGpQIcwPJbJNJ|BZ!xJrRJmtU8{y$k0=N6XN(?a_Ua?~U2d>u7t#=#BaE)64A|feP*P zHA0BS!~9(1#ba31>;6K68trtg@4a-9um4?im(@;Wr#evdB_}YIyTXCVASkl~k*37d)OaiI**#}=+l~q5#Hcr>R@1n8lddbidZAu(2M(@lOUP4vwujk&Z8BDR zn3Ze(!uW-LpqK5fwf@4X`akm{MO{ir*dtD1NCjN%ggu{pM7`@wLqoHk#P(C3(Own)i%iok z`fT?JhOnZ?yMuB^_jLVoP500ZbL|JCp1K!_!Vp$m{=rxV-0TAdL|L!OL+kGBclzc7hpQV{TG<&5uQJtWI|l z0R!agquyXr6t5<{_TE&fb!vliwRNdQhtuqRqc;XL$rGXU4VZOxjM!)kkFHHl->{N` zKkq{H=hG4xu3Nxc)73Mdz#2BvIBi_J5{Dz_b6p=g;``EY>=w|Y4l_<2I zDrtQaQYH6BYsW#Yfm&3QItEGP1Of%MI6T(oj>DW1Q%ldFnO-84L?c>kXN(Mmtk-x} zdr52?+$E5*t(ldn^vx@_SQ77DkMqb`5(iTjE{GDjy&v<)d1$Ik9=XE~(%UUYt2o)} z-`2K*WcBv0NYfU-oO_svet?#U9u;TY9*Tx(a`kv>Bj%0(fYTJ?bf$MH`^7(ZWdMLlq!AMKlpQ3 zx1)$yf3-W`HPicUN&he5``nhWw%XWSt>|~H7BT3% zu0AGl)KW!GV>vJB!*944MujACq|im8c{&aZGvyN}eQMn_T#A{KkoxGN=@Yp7QJA6qukgdC@S~7jIvLN;w4!qBq~GMI zT5jjPc3}pp)_hL^>Z<+txp51>$8}zK*Grx=({&Siv8j71=6_0U&Fxk4$`?{}crShO z_l^)*=ElblckwH66HdwznoN1c&O|TpX%G|Hc~wWVaN`cIUym?qPor|<7S9lRwCY#a zIcqQPzE8rN*Kl9E!gNmDWwn~zynbB!$X+b2{QNuBH@Yr7q#}sEA2Qn?PPdy~g_$b9 zQHHL=C$tTA$7jPW=Z;+)@<&yPiSV>15n#u%!$>&C?VtX2XzP@ZRcbi`gOcG!?fkR8 z@p18N$Nx{gsL*sIl1UQzt%=nqDG63zmFG2+!uNG zA>5KAjWImGM|+gKDwiDXXS1zt;TT86$2dIh%m2VFj-TUa)9rIU*-XP&mVnO_a1~{u zeRFp6QXZeqsnHt77INGNug9|VD zt9Z})wQ8Egl1JxVfs#3QkLXqZ9G{sCNpl^Mk@?`L4=&|?q})m(vn*DC{AhHg?haO+ z!M)taluf@l=VQ-Rtg-y<%W?3lb#MUj93~@LjHZdv#xDIeM2VVt^p-f7*feNi7e%Y`Jmry5r_OQL z@l_c(uDvs=UwNMV*j8t|HpKNx9FN;*Eq5^FDsWf1sS7!TKEVO{;8mk`JP8DJz%C-a zM!AW#cbzirGu|Go<1ptMXwd4EN`Qhdzo^wsKv(-y(#Su8H1C@2RJyZ zTS1@?{<~3+$CJvvR>JWO9^AjTlwxS>7o}tkmT$NU6u3f_S9c>GYicVSteQnTLA#9e zFZvJfg6`u4FKCn-JSAQ_WRcSj^3zi6r|%3&c5@>eLZ9eL~L4bd$Gx|i=E{|}}> zS-;;U`G1kcQR^^0f-6#cAWLd9Q}s!$_pkr?D&$UEhuo@l7Ug?$k#g2Ll%GbaUAzuU zXVp3^9hA&t!FB!lGeX?Hb;#X8`gfDIAZZh}zDnGyiTeZM-b&oN$=3a3>v59YSc&jC zlD~#ZiyK<>^4WinWN40A()vh5_yH26nHB{Cvq32<$ zUC)rm-XM>?OZD^b88WW(`jf#{pi?VwQ7g!it>FL6)Vir0my%2yrB;-t;GRd^AaOUJ z*I$Y3QMg~DSl3Z3tg$(=mJ04I#8oNx5aj`d@-$K2B@O?gRE?qOUsu&7JIKmUJ*x#$1S!MyXaM24J? zC4v+e8+JaH$k+jJOaIFn{=diltbH;N{lkb`mJy!OFZZ(u58Ps=y0kdoZ`0;6{RCR-o30A1fY9c+*Sm&m_Oyixi~0 zBt6qhd%QRY`!YbC?Il~+5d5y!>OXH)O8mg~^zipTVYz%d_+v`XugF$`2gCOc*sdyH z;IZfrdoB1_2F#X*r_563>?KjAME{t)owETcFH!pyVHJKBp2^#Q)(c4gBh}W7+6wDz z^aiX0c^kNl#o1{jFXo(8H0z$c!3vAs;0)5dQSpYT2^AaC;oAX(VwNky0**{r(5N#b zVIDgYR-_|YK7Q?pHL?+`iH&B>>{QmmKF3Wh>!d3jXca zHn9lX1hh>o4*yc{Z@(4?S{!I``acE#_G@nT@x)esfW6RM3~)rtTLm6YyYB?oaNNQ7 zal980qVOhyeFS$Cyp-S-1h1i3`$_%)z^x+>ay->P3~=YjM>y`;M7rt zY<6cAz=fS>^FoF%J|AIAJI@;R2KV+O%&~wS?1N!EPUm1OzPwlyY z{ZwDnvxEOsU(-{Qf1E$wbKmH_?8Tnnj($Mq?$15XkA6&s-|0DZ%yVS-6|#GR{p*5l zWA*~~kJ`llAF3< zishUfO%hyG(iCy$Icnw><>8sp;O?<(TW&!0ltl5@+)|lBpv)w(*>a$6Y9Y&^13feqtS^p;5z@)uCa_sv|3Jkj!$Z zy&EPj*KbG`^AoOHld*{(xsE0;oOr_ZwTZEbjV!V9mWdq%*AWa5)N)=(PAwapgSA)7 z`DgOXvUM8va_cng{R(pir+j6bw31X$*|;1m{nDJ8)TXikq-1wlNDHSfFRRGele(%b zOsPszsxBn%g;b^&YxrtBK;g?Nyh;03YEbzmtUu+2IoGGglwYddoSIsGoW~j~%74o4 zPxXupQ`(STQ(j6v)iKw@sp8V({K?dga!(Gn)8#q7&3QvY+Thf8%KJd`jpc3)>*}Qt zzPWr&4*KMP>x#{{m2b*fxN*y$ z%CC?bHg9>i{GjWSEgu2Ak>Fv1F9Q6j{?Fv({ApV5RyJvxcIwvLN&9my+*&Z{nw&3e z9R=aPojP_>pLXq5Xj9tHx6Yk(oWHWwGYNCiG6{R~6_a+m-rRcLq$K6{V9u?{p8Uf( zgZnOEhjWJa<%~F(Gofz>Kj50yhc)vofLCa3eczho)^6>4aOf4dD+4fe+LD%(5^Cw@Ub!;mE7}++W^crn5 zz&@(&y9plWpWjvp<0jrOT&`caZF2qG7v0daRs-p{Z-YPqLuKbs%Z#&3VO z{Fqj={pQJobL)XJICsVNTS4c26Ym>+Ok2MlQ}tx(*yKX37sBImTQ4jeGA-A8;d_&( z<;DQQ7;#|@N6M+g$5Bfer+w){9Lw+q-ZAO9sL-ck3R<*{xRhh%GWE@>JPeJz6i_o4S*-~H@6l}J?L`n$kpGZR`x!@kIAl! zBRuH(+>ZLG$6ROb*jD;6rDPn(`Nl!l@*T^89t654H@;)tR2N6?2@ScP-0eW|) z)s~?&TRWk(b=)v@ImrKb>POI`4^ACLu{6@T9Af<#xER*>H9JO>YWxQ~UYa_d;tuA& z-0{z;gZZy_44QUaduRvDpeXKOid#-HXK?I=%DKqtQ#;O{HjdBP=9zXKjS**%d^s2W z)8TR%*wzk2JRP@)6_ss~sas$MKw<2+!Gh#WY_oTKDDtddGFs zLb<-3Kb&@$O6@SsKM|fg@-PeTJVfEfk(+X{mL4OSX}SA$wx8aYyLsZ8(=XNT+_~ZO z-ML41c0qXG&fe4A+AZNefDiB74e&2JFFF0v+{DT&PG7F$-LB>OjBwA$D{|=$AA4UL ztmm^2wc!9i*0$^T%edbF=;8+e=J7iK4&|CFpAF{=0FL55fMfZW0FLMT0haK0U3sjW z*W~20sr(#(XYh7_vv?1{YJL&GdHfpy7x1?MF63>w`K*p_0@%R!0&L`W0&L|&2j#O4 zo&dO-e;(jEeiOhA{3yTx{|I0Yug=S7Vcrce#=n@C$F}lY0A9#%1GtMH1b8w36~Hg? zBLFXlROPX+^ZOyZm;WB%xA>y~uj5Yw+{d2-cq2a!@Q3_0fH(8M0Q?Dm2jFe|1Auq% zzX3c%R_-M$_mh)O2M=Z+@;rba z^I-s)J_4Xi9|JH?9}jS-UJ7uyJ{jOBeLBFg`YeFs_1OSR^!WhG^>YDE)$0JBp?d(% z(whNR>+JyN>8k-Q(ANW8sCNRa)4KsS=wX13`X+#_`euL~`gVY;^<4nh>0bc2LB9-O zK>r%R9(^ysuzn4|n0`ILq<#ayt@;lEUa0>F;4b}EfEVkx1N@SH7r@K)!vMdo9|gEq z{~f?@=?@RiV|VH3$wNAN@?IT1dB2XH%yS`qs0-=CT}U70Li$)2dU(7GJzU~K50|^p z!&6=8;WJ$5;aM*9aJ36PJkN#YcsXhNI%)e!jy5cx-IkLJ@Q$46!}8b%ImrDeCowXQ z4bH{zu-wE*sC&7;D#&B2bN>!-T`n7*$2R2V01V^~0oapU0PvMu)cL2}XGcJp=DrB< zo!nOezMuPNfFI_*4e;aK_W`m&9|3d?`X|7=K|0tPIw%j|@Ik`>jv6!q;MhT90FECt z9$?9!Qh?=yCIg&0Xga_%2F(IEYtU?f)q~~(Y#4;8Z5)JYXdQ%JT1}L7K$*g-3U14r z$+oi}PoK%IWVZoKFr@4u%C+onfH$zC0IS$tr_W?(vG)NkV}AqK&WeD39%~2aXAyuK z*{dt+3HD3=mE zK=2sBHwX^a5tiw?Ytz^=z1a07fMu?4033ADML2D>O1L@6U~8PTT^y_Uir*D_bK>x+A<7=&Ug|<0-azyl zh<*dn50K6yL^(o~BP4T-=r0rfWum|ADs$a*>dVA^gSdJQr8b9Bn?tG1DRVu3YFQ4Y znYgt?ua#l)M$R(V(Bd~J*5F)(dxo5K$`>ZTJnUy0=*&l0MzEHkpWq&XHxN8R@MVJT z0)#$-y9u(<2ulbqBzU}}-Sz%Bt+d^xomvVo|5P`?@u&I#PCxaP8PlOAm(N6aF+tZX zgr&1cKS3YC;{>$|grx-C1bqZ|6WmYmFu~&lwMvpF=qBi^B6))Q2_7bRoM34+NfPuC z+)Z#l!NUZP6VzstJV7@>AHm%O_Y*u!@Hjzj4#^XA6Z8?>O>jTK!vv3ua1DhCYV#59 zIv3$Sf`g<#1t3KQHwa2LUS1P_UDBZUdR*h`OVHbhPH+RkT?F?L zJVfwCf~=k72`(hKf#5EJtb@1&FYdrP_9BJZ3ZfHSNN@weT?F^7Br618B*<2gJi&zo zHxS%Ka38@#g0h+@1P>8>QH0k}m>^qA+6ZnSxJ!iBQJCPu^$6?MW12Tmco)Ha>qo+@ z<3^$%qA)ujVF|(V^GTk6fN&wfT?F?Le32mYjimWf zE_-!)E^}$uO~_?=+UHNpWgQUa>?hh?({cfR{xqEp8`N5&v-Je8AovEsw*WHw<+l-d zX_Y1E=VDXh_vF~>QISzwM_o1QC!>Bn>T5+06unUNYSEg}SC0Pn=;>pUV|I?YZp=@{ z92s+L%($@?W9!BSiu;PMEWWn*`^CQ~K3x1j@gIvnDsCJf9e?%s>&E~4_`AnHI{x+X zAB`V2p=3hUgryT!O$bcbG~ucVsnfQf_LI_riIXRuJ+XV@-ie1NzCLkSS#_Da%u}|u z?4h#K^15<=`8Uh&ET1yTJ*jh2e9~7Y{oACECY?I@jLDUg=S@Cma^2*mlYNuBCU2d5 z$K=D4AD;ZghGq$HFe~)_Gx>jT|Vu{(-Nm&eR{6G@AU7T z{)^KWG5mF<(#7~e)3(L9LZ2@X4P*<^~Yz`f(2L% zC~=@9SvQnfm~CNEwv}yS+klFnkEtzN!5M2PJ0D<6SvSCrvIxMnWpSdgAqYTO5{c=QO}^N`%Fq<73!Zr@cAmF zyhQNNM0uOw->O~!%AV?vh8QveK2nYFiE1nEKZ)}5*{7ev*zaanoMN~2%yxc%htlW=b^eUse1`vbKUCz*Ana|IHmFdShC%+^htn6 zmc9n?A%f2=eGlNOWoR+74D}=kW>T6PXBJp+tqE^#MDDmIgkgfm2nzZ|t?1RSv|{)w zf>f~@E{HxZ>ARJpxww9yaT?8M^dw4i_M#e9j1ac;d?KBT&QcwD97JAC16Y z$LSpjl;GhaXpvo5S1-Kaf-#xl;p~{kp%1%X!}GmwF#P?Y2Q(K@eg}}VZ!-MdriV1> zDcOSnHFh<$X^vlc2FfE^9{xfRK+dj%c0Qc_Q5ypE7XWhh9d-(Y-`9o${R4m+`z7=P zoE;>17b^hD-30Gpg?JtdP-DM_-h;El1dp&Hpxg_Pv-{W>2p9kC(b)Y2AAr7u zv)>W?J@hFWdk`RJ4?&Nkv4;V2_9*l^8v6sm$D#M(>@k2EdkT6W&YmRrH1t9mdj=q9 z&q8mcvF8ZBz^3EvNPrqU&SpUPMSvQ68Tu;DULyDk^jR8vmEh~Jmf`F*fEs&)&4%!w z0BY<_HW$Kw0jRORvKk1#MerTy=QMT#AZPEgvmyK*!4KHEKzX0we?lLqu@4FU4f;XO zJ|g%r^o1Jx2f=?qf5_QC0cuRsJP>9CxwZ@_I>8*R2`DatxmpWQ1_6Zf*Oo(gFu|c( zJ5Wv`I80jslzf82wN-dB3{Ybuv^5Ye1gNo5+IbKjNpQ5b9w=h~ayCx$LikjGoE2+6 z2#*KI*)KFdz}vMTz&o^VtPffU;4ig}ST0&Gz{j;HdPds>@PwAY{Awx85#NHj0|@!z zeV8wTIea_j3n1izUxYa#IE3#6$|(eg@!dcfO0a zIXjPE4dHbFIa|-Kf$;eRL;PBx^bov&e+MWV0dm&M{|#V-?*|y=Hvl~bkh4wvdk~HT z;QiV z!v7ACvzz!M5WX28XFunEfbcH>Lha&@L--DYzvNG19V2)re;O!v0p#p%{w#!l1(36Q z`124x1Q2>2{zvSE0CILOKMvvh0CIMezYO8u0Oaf#e-*;N1qeM4e;s=vfSf(Z-+=H# z06BY@{{`<&0Oafs{4EGS29UFt`P&eF1t8RLegfco{5^nw=O1AE<^PE_S^o&&ApP&q z3og`jwu0?*peeGHOu#&hoj=*rar=H_k(n3ww-fJ1V30vwvV z8(@C!9=d5!0<*JoXa=^D{V@Nh`M=CRlK*`EpYz`v_3@~&Mazm-7ws*&wrJ?+vqsmB zerWW+MpukEd(4#ai^eY*|HbiljDLT8@r1#p3rqc_yGnmhdd9@r6PK55DZ8QUrm~-v z-CcIH?EXpKDWNHwru0qu{FKY4TtDTuDeq6on|j*RsZ%Sao;CIAsfVV%KXv-F>S?ZB zcmpJdX5lz1{o+XcWjq(N{)4e<2>!Lxe(XTI;FNUQ4E9OeWu*c zmSpOCaZ_g8GWr7I2>gvWnBmsLztu2vjj~ZNM;!%aGYY&u3g)ScV1=;==BkTeu1X&% zhFSAphiLToogpcJ82egu|>ZDUq#^g3VC$J&CvKuaXtR~Papf$59)ZK%vvES^X* z7?1eEM)??Sh-?nUqmf=v3BFARwtvQa$7{8TCiQveq;PeF+iY?cbCN#e)_>u>iFzlIl&5(gr02LDm)x ztC^$7b-`FT+GnCDLIof33+45ZKr9-PTq8|nM2G^lG3xh)p;|;!aT&>~l28Qg!DKQN z=~k1PVP#3w7q&c9zcm*0CxZc^2wTD@qTbbo68-!?hOMq3)ESkDBA1_Wg#m9*`1b6NOhkolUZ*R zuDu4OMN>;z^`WyNwSHwNvPovtIn`-dYG0;b`$?g#GGI3l_xY1-Rj?B~R3hO)7?BUT@=eKT|YY5sgK|(e6HHu2YF;kqpL@p{|f0+NTs)8Hy)U zzObitNj#d0IV8x@Gz@pGSb?GTclkh6p{Rw0l?Bq$8jSab5;$1(&vhqZknBt)!Ad}u zuUXZ^>;#IlyIZuB?zpd4F$)xbFp*g03nd$Tkw93alzBvYMRT(?NgHC9Flvd}Hjq%i zRSZxW45!9q)w2L4FGHo-10cg*1{PWyh4}}K<90D4a>9X>VM+9pwLL-q#;o&+t^QyPwGhK7+;}J;tCShXo@~|&Eju0#b;<;> zmd*>nBNBs&OWc@l%(UiEiJ6oPNUMFq#8&#kDPd_DtYl0bhLaOBmjolw>G_$*HhuC~ zA{#2$vS1(SY4wHT$i&V%825FCgTTzxsR}SLI}tL_!z#gQ#G`b6^yQ3!#p27;D^bbwY zZ$VF(NSZa;s-#W6c%sJ_UewnX?2=Wk*Bdi@GSlye#fF@92NV8yD26x=q48ef=vBUW zgeqV>4xCy@A((m0ST2&?}hDtfzM#Yo@NvMl% ziG*P!T@(Z)jn(Uvhk&RGt;URM;2x_)%Kc{Vc1ruvT(DeTCHd4%=8+Um7h&}S}n{d zi%35Sx7SQ(u25@kLs+#zl8j1VEX1j5O2n*}5;rQPp$&TRI4v2hDbKHacD?oPIBY5Ylhu%bMbhU3w>%Dcm%lDIA;A6neVX z6joNZWl2tda#B9C`#tGfsSm9xTnY z6UV8q%1DlwZ^4SPi*_B_lQ1JEOl|?JNWhBNK#+k6#a*K%Zrlip;3`zeyVK&k?Hb&U zIuNUkrtr)oV-iSel=8Bvx9B!A8D!O*!c0rN%E@ZSoz0R{)>O8dNp))n*A%pOtE^qv z;!r%e1=_M)FkAbSg3yxe3C2axIu%+ysFeu z*-&KNGOE%Nwy zN3b^*_Nncjw$Kc+twq{6YKwGYD3E_aW z)L(p~rjrbw$k7Q1ZY77d!2~Usz*$ECu*gQ{4g~PLGU*FN63c>ptUH+W!rugl^+q@2 zVySOQFiHFE#G_Dxf*w2$NEm_IaL^YwRY4%u*AXQ-%8-bWFm6YfoAS^KH&npTk+g7? z=X6G(?B~z4N2G+y6pBQVX~itatMw&8gqYtrC2ICT|7$z;tf~Z0bcYf!bwT$iVQVv- zj&?G3(Z%jKo!mylX2iBocTbYcq6%NKCv*2b9*X!wF_=CX9bQ|oD+tRs7~G+>tkZ6F zn;sbL-~s3x(x@t$c}`;-+8KYT^D%BUtO_N2GH;|{jc5-hjWf5bH&%q0!dM)S_M!`o z69EvK30_HseewFOv3O7>5=gcbO(Zp*-kRt`s}pDh2!txG0u(s51#eL?H@ z_chAX4rno^5^*|iS1eD=72DBRx}oT!ZKqn1Et;jl>2N2VDl|Bp)T9wrIor`m z8c~%?I|RuftFr2`hMlHLwfg)Up;5pb1@9WE9B5CWt{~Q?gnIgoBDL<0`Xw!GYrM@Z z&GoE)Wqospx4x~drOn&qZeJz|o@P&n$KB{z>+bNhG<(}S+-)7stor6U$ym`|-{x&? zYgy9fZt~Wz_H@+Oc~^Nl8ie+f3AL}Nt*viwcM>D(^@f@DHP9P3ozzf2Vs=w$f_7td z^{tI9YrO3cxxGJ@<%K49vwI0xYFp9V;c2S(u4ry>H`g@+rG9m7eJlEG;F1tB9MWuv ztC<9ewwA_vkuvY1`X!!bM~;;|gAPU=<&kblFLrw{J$3aR^=(a1@Xbqv6!4$|b*yQv z&oI~0+KOV%X_3s#@|QDJB5RhV|=t&J-{mA9^CRdZvD zyUwOLooA^{=Lmn=nVx3IOk-o#irkNwy&|Ux+H0$k5>LB(5f)(o#+<|)jTwTD##S^B zFmKL+js`7JN0ar<1IeC)l%p{zXIO&CfqCDhBWk;|jV!vzl|fdndMDDjFcSAJ4h6#j z=BIg_Cm=9dgGmal*G$9=z>32ck5Hd3;v{GZu7>M^u&@gY3alxEI5}j&t+7yCiAIY& zOP5$3Dme1x?pVSKT2x^~;Yk8Y)SI@5ub`?0snQl(5v5rGtbG@y61bT2_xZy#8H~k% z7%=Ca(v4z`W2_+r5f*d7gq2%szDlW5P;$FngYbSD4drl-AzUItikftBArO*f8>HD{ zP$}t!Q7|h!=zuZ8xYCDh%@iWWt6aPfB408$JYqMC@1 zGca0hSV{;bc@YxO?{M8!raP=&BTrauvDvH)Vz0?TfoOJ)9E@YTpe}^dNGN64BEE?@ zYfX!8N(a@K8&($7m7eK$zw(m9XcK}H2>JryP(;bK?L~;uJ1P{Ti%BzNb~x#DrR%cU zSNktJLv)2AU9uyTh&?4v)*Ka@@#9YKLzKGg_NJ4>-#lU`E?FE-0S9mktSP4d@H&c04mDl#NOAxEQ<_j-DnC;Dc=_NRG z9GkZyFxQ*yF5eO4B6VsbvzQpN2{N?ClcS{WMEr&(2J4dZQ$oQ=244KTVSO^X&O_YLGRtQ_Cn3hBIEd39u&QhDvR87_f9Ks&Y{!$c*aaP*Q6|`5Xi)z5L z^^;O7^hLDr2w^X0thm5?b2Fx~fh=n)y3r!3t0NF5GZ*^71CI(1U+P7>V2^p$eMZv%ztFG-KNe+DqXsot&szTUTr}eQR z?4Pst-#82K)FoJLJcu`4#5+BK(5!);=^12S#5&msGV}2sQ>nDr5b_w5N*a8L9(ruY z@PS)XFxe9gBurTYr_)xIxk@D@`(luD^TnW$=tw8hv&mXI;*}}F^Kj*nx=5Q$mulT+ zEJJTXZi#v2V^D`17wu3uLO#H-8qyUDVdr z-4bC&*A379M0ZM3~kTer=% z_2>wvdLVAC^d=HL@nmmkpikrFXD}EAqA{$(;>t}z9tH{wXPAp%hG|?Wp?!#Ww6`Ud zjHQxhduxh5ltIUK5GaJsk^giI_pdiYX6a zRh$xFgq+^gQ%pyORO85Ni8zuSp5;61w^HfEa?l z1p0qOlpT2(1Jr|gYqYYc)|yY&1TnsN#h(>)AkXl4JTro&M0~TrhMGMB9UhQ?88Ugz zc>9jhhUM98>?(T_?#X z6Kb{5O&b?1j4n$NwjX7Hvq2;sw@=obTAP|%C8st;X49erB(&S)+X^kZw_Qw1g5AE( zzNFlT&BDT1=3cDnYrMFnY->s+iwb#3MheNk-k!q+&QZ_V==EZA0mqBI!Ud=+lWHi> z;5ZDh;)T0-*>Bucw0-k{`Zwz9m24_#n$(l(?Tp2Z&1nT)V1+YODq?i0)%N)hGwlxK z1(~!AjL?Ws=4NJ|$4)$cg4jwnh(Ur4X~qzOh!d{2}1*%UE#x0g-AfrfI6LrTLk z5#+ez-6^`nNGuBzxBKNV-41R@;-}wWjBmu{Bx;xQP|+9Q^=47L$fB-lL0UpGJ02q; znH)16nGHHEcV=d+qpXNI&?s5y+uwN5_lPj*e-( zOsD~8yY?oSaA?htVweo5_ElTyva*&o2cc578kfaI4qI)9V+xAgR@&Q2lgS{;1NBx@ z!e*gWJy13g!yC4%1@^(%GLT`>G+@(bP!qO9B$zCCWw)U<8l$ltM%Rr&^K$(HGfHOF zGvj8kEISK4fy{_%89CH-tI(WA;IKm@$fz-yB5B2+A&@p(s!O~20R%arSQ(0`508RL zYe?|4y5;5+zOTsmij-}2ZRj$~526@lYG{#Ch6s$4LUB4Jv%xG-Q=XAmTefUpWg=xZ zqatH=n&{<}yedJF2bB?3H4W0U25m>7iw5K>4Vc@g7{RoWx|!nDjWXk9kK@2_P@;A^3nb;B!DgV-I)YTn>W z{SM!rv-!Y*Z}((obj2xlw%mg-^&1OMxuItNu9^*_joS7k%s6}TgNgFxkhS`540Q#K zZSjzDRgNZV2^FD99F9}?Do-q4J5${zVSyo-(FDZ16(-)QF!4TxmSBCX)z?Q`1~IyF zNqw6L8c%!#Cg;rpp+&6-innJ8@errOm)Ix>#(g`1DVMecp-Vnh?4U-`6bgq!Fqe-; z0tr>tfg7_uJV1evlYo41;GjTBsRLIwW(Q6(3JM+QL31O-?~D05Lof>Ttw_M)!!OFY z!U$9vfhv~FRAauFG`wy-p%jjQabt4_1M;n4OnD6%7cVhG;*ljzYJG8EuNyU6Hsj)KC_6 zC?mL;$AV$Ht4qx)?QXcZ7LH>QdU0_o;%A}F_%CSPzs06wy)stot;u1*m@H0c+jw3F zotm79#YHy}!Z)S>p(^$&eTnf@Gp#+zDoEdqArCBuf(mYdG0&>vFmqTLN`#=QSu~?a zWc*A9%&G$^e=?JSTT|4soLIdvU!*USftw9kEh)P_zHp{gI2_#~pV5Z<=pn5*Km$P~ zi;e9xKMMIGO1g}VueKBvoiiExGXr<}O0sxe>9hGx(7@%mg_B4x5ljbUH*R)uf*?O8 z8}@CbkdhqZdw%G=WJnC77FT?pjheG3Azt)}^+Y4o>9Fyd9|}Bxdr#B?1vk=dy{v5r zhGWLDb4ynjRAT5%NSHq74V`i;H0x*#Pw8R35lW&eDE&rXUsUa&1->j42{4*m30y2YlkQ{U2uqeEo%AW66mAbYB zBrLGr_Ma2*dMoi;#<=$>gtLC~SpBTQg0xQ%%v3%*a8BAc51OKzgU#5PEjXvr>y_Qo zKE^b}@4Ro9p#%iTh%6t>C=>7Kabe!G@Uew7Ve`fH{m+YlREdB2y^hWqiPLbE-2T z`UO}=#>Hlh`LPP|2@C89*#i5wB(SY@4y=Xwne9s$;ydHgfcaf&+!wNaFQd5wa9R<` zPKv%LAP&Pp7%|+fmK5>(DdH5()agz^GUCREx*-$xtvD-l35PQ`yu^av&rn>@o}Nad zoo-2=PLipqiZmHmjRUy3*6grm>suOX&)u>)+|pG874yE(BS zS&)#ff)1*p%0LN&o+}9oX> z>gRtt==Y?kXcnbH;egmLld+7WNp~y;YZCc~)c;?#3kfhrxWD+K%RZ8~|z|$dfV$IBX9Q{OrGOd>z zj}DV{n2sldF&Go0sqP+?nFw`*vRb*ZWO4B7C{z<0K`u3IG!wB=F%xz%+RlL7*cC#< zOPlFacUl+qr>qB9Gz@h3V1XBn(WKv4@(Qj%WDyYwM-Py1#4Q5aF!ItB5c+ipI{RM{ z*%*m#q5UGOyllT|VP11fD9N(fU7ZL~Q4wOx6;$BO!MKsUNWh3Di*rdh+G*_;*TTpk zKBE+sm1r{#Uy-C_U{#n?%{*ea$^6L-kq;COhXUwE>YA*~WV)u!w}npM&6n+v(q^bX zlnI<-cSLD#PfmqRmid0vJoz_$v!cyocPK`((x4D&`e83AFuxoNr7IK+7|qS_DN55d zJDWND>NLou>wD`V>}wAi(#3Ji0R z1eA%}+MA<;167VPs+4&TWOk#7yg+`T$o_jN;xc*SobB`6^JXtvX`?s#rXC*5dj_bLPyhzKE5Vi*1uxTj$K0HLGHF^^6L885lpJXO%-o)NTr>oOAldQ_ls%HM|%-P0X+rVa`^OP};{L&z|-D#UV7zhT8d~RE-VSeN>QBT3TXaX4@Bw2sR4N|9QAJu252|M7sq~1{92jJ z8uSggBQ3jR^9yszd|)fAJLj!4)E&_>g0Wt+%qN#s>&DegEhc)DRC2o(m3!($9@ zMuZI&Xad%DAu+PaZ&u>hW<^`Z2mG)elm*u6izh^)B0*!IwC;@A5)(?$4-Y|M<7F;! zFIpai7;8m!07ySXCx!IU&IRHJj;IKH*(Bx5fC27vb;>UVNDcBgl}Hio)!=R=6B96+ zMkMI=vBOEfa$`^Sc1-?N*P=87G>&2%?wYH0Hl3CE#=@b7+b*?d+;ms9r!#HN!%W&P zh}Xf|G;7lA%(RrG#Y{Kr7&oJx(mlDPzd5>v;Q-VggMkUwMe^4lm3J%Yzj~YHb&GX; zIMa;5%#iV;xW@N}#Fbh+(6t>@;x>5NI|cb2Q~VAmG+j{*EG~3^k!W&J5ZSg{BCwdk zxk^X8Pc$oIgRq6s-W{FN0F~xKQH_*WjtW`3Kmb0(jj$fhz?1wIQ@4*F>;k1zs$Og zkAj#$D?MT^iIXLhCZ22A#S;ERM=;`(;}|ZRv;I;bax*TmFQWVJz%k;Rx8PwIi*5EcAnTI$>P-EH@kv6b4c z0pnF+BP>ea3gheq@BXfchlHkhm>CVtki)79Ju{6u8ABuPjZ}NR$(~Sxu1=XZcEzkD zxH(B*Rc;IVgHYj=9~aFKuFMqtM7{RxOqEpwi#bPJQpEEcu?8oY_RBlQ7vIImAWxv_ z);`tR=BVgOQ;JGM74w@u>YW)3nB?!CJmbucp%iv)FqAayM$>QR_(qnx%CW{ z6~fAEE!wrPlhPkYDjSK=bn&vNKcQS(T@mY!Lz^c`8mkQyMtcQ^How$|g=UB5c-Pdr z{%NN{tR|Qk;a-F6RO1PfY!)}K(r=ntdTh5iNuy#$h%%8jYN^1?zrrLfYnLBcD^>U%SBj=8{m zVJ&4XoD4Ztoo1Mu0b67U&7uVw*O z1tA}VYSgA7tlAO_ii!2K<`^+I_^W23zyUS`et1k{Z&4smFL# zM4b(?bI59dG*tkti_$a?D9EjXzq5cYaxsVU9fbU8o@(-s55nlBSs;rs=E^k9BMmdi zM{~$eos_z{AUm7MWJe`X&%*w zc|@5<+$zu{%09@1mwmGA(3^9JUP-l}lFDZ`X+qt8>8IJGJwSD6E|uMECUWElh#s#X zZ_g!PbW-kuz!4rt-}op^0G2>$zjKK?gKA4B=$K7j!m{&`2Q*KRYB#1VAj{52cnxU^ zf^3D1KZksW{=(eMll2$F=qvP-AHrBxb7ZW!R3m4RrW%k6Qv7*TMl;B#euz1bauTGL zf#s`tx>y&brGl(t`myd-%XSx}w9lYC`p9>4;r}^Q4=O1&K`M(bs^dYj?Wb}Ll259r zM$RC8Xj{-KC{2|R3q9%wyh^qY)S-FikO${5@wZ0$xy#fvo8os;-L0m!g!N?(c?(mA ztqx048=PPv7GWD1^S84WwwQIWRm{!WSUp?Ent_}9gfKwCxf0l;CR!Ad}O z8%u#q5O{R}V=N53KGqB22*gMLeKX`_CRk(3|LZo|K_UuaAL|C3P4Y4?$ooKBitL5R zvYWVwBcHAREc3?nb&OR79Qad#A7H1mY4BHsrvsb@zBrwgGdAvgNk#rlGmM;8N|~SG z)j>>&2kg&>zidJ}ry25&_J}*CgY{5)vHd8q#?-T|6emU=!dr_(FZ1C2MWDw4%OX>p z-79S55}^7Z*H|h(_y;tNm7%5>)!QVsB8yuOno^KnHm;U*#HFW{_@^1+6j*Ddyx`qN zOlcQbW2J7;y9u}0^wVUx;c*lSlid2BPmI-n&WMNx_OL0!l$ zT~D5jfpmx@%ru|Y1~4o=w3+gTC1BJfHo>X>Sw1mhBPBsOi%?mb663O3mUS&jwF%g}G;lNa$aD%wP0yswr`*TMgI$zj*%u5-QO?;Q^!66`i**57 zSYKxEJu|KMwtA_VRCAJKAwqtinKoLaw}6=$6thi$hcRtEkXsx%x5;|h#1?_CHk0-g zm1KJDMgOGJSYZ%!VvY65o{~-JzaKE$K#@~_z)rKbqzrqf7}~LnjW8<^eN#f#W;Xki z^mb;7`spJbYW4JiOS1yeSH}$>4PHdOHq?WHHX3F6;Gf8em>tAu^a06Tdp_%mGJv6G zjECIslUj{VgAG%q**F!eqYec-DQKcaVmJ-ix*S$mOO4wo=zw&FGH4ap2TE3&ZOAo? zaE$Yy_&?yr0n8YRGv^v+!i%%VKUs@vHQMvEZ0^aZkA-z|h7~3X*eIIM9A-k3<_{=e z^RrYUEVB9RB(tHi`Rt_gp-I^+*sAH7C$p7Sy+HmG&5CCCC!ck8QaYcVWM*{Qe8;)D z>YdJJ(e-97iH2Qe{Qw(KUFywIr?pasyAZ>bBfg_*fQs~ zDPs0NR}nJGeC4$H%sx-CdzH=jB>hYOy_Z9t{ldeU!?;L=+H+=7)ZyHyjSfTlNc2hC zpgt+Re>ePM>x;)_>$};m1N|pF`v7Gxfc^(hrvlABfC}l1L3G!@eb%##>@$e@%xMIl z&lVFUL1A2FizMSNqStA}-*w6V{zM70!YZt!RzOk*Fb&yt)Bny?*CHhP&(bbUXlg=?e`CfTUAggyRA&k>o-$b*CxAe|Ln6iknO1XC!Hyzm8a4t)=<{_UE=N9{aI(T zzZE2v)pR4lRW$bZyW;%pyYQ1O{OnzL70m%ox>&sEv!A>4(-@{$sjZ|LOO`7CnWr+_ zVn02VIF@JK7)bq3)&SFor&+11PAl>Mp+WlOJ0JEzx{3zr0qmFT`sQapzxZU^F_e*W zt&Gf}*~TZ_(%E(8|LnABKpn@~R;K1=OrcKNjg+kd*$|~N>pH1Ql^NgyWttkN-&y~e zs^kEs+!d<)fM&b4^bc^FdA1to6VK{wu|M$?s8)^rDd!qCuMS|)o?*!kV9cygr3W-z zO;cm^J7m}-`|Y+%RY}J#v`Up2VBh6d<9w=a;#^h3r)ZNE{sCGv&(f>>l#?*sBZ-i= zO6X1v{#Ex2OIYMn#Mvl&I2JV0UP5`vtVbnOn@b=+J(RC*nbHzA1OC;Tc@5JZWT(_+ zNn@F4sgqk#W0cTtX^3J3K9QyQY#1BDwnKfth-tN-)T-ZRgLYGUKdBBM^E2ZX&nHd2 z*8N{Ajdto!#4a;(gH#_9nRfiyCFB2vl2X0T>OZ;napyZmam>?;Pf>=d7AnJfD^G!p zzPUuU3ZLoQ6t$?$GG9hnvB8EGrpMtQ-gjBa@b*T=-u4*0^VS4-fXcg0>SxOm)C!Fg z4N*HVFJVeY7tyg4>)0}R>o*~#5^{tH$+HDbhu(69omv936(8jQPa1GrI7&Sf#_uEx z=p~Uqr<4f0Y>DOZP+EUhLi&vJexv3IuL-%hRdORSHCq_ozU-md6?kTxprO@`ly;Lt z(jn4i()vwFLK(e99l(@rbV^Cfr_+~|GQ(&juR@=oeZ(2M_Ai<|PUo`03Ffu+!DJC?WDgcQxv@l?@B!+cssZie{{^R1v> z4`;o8)7MU#>nN^K*VFT0-HgGKvw7;=llNRR8Qu|XhJPLK&kb`K4_ix=C5(ALP5gRD zZwcM7?Ev4k0S_rC*C6LdqR&5@RvDizeW;P0H?Y`?A(qEXR|jj!q7h~B<}BTKJugYE zW*}oxkL>Y`*^YQm5s@u3L?z{;zG|Bo3s%_Eouo0q>bu4Gkv@m&lp~9{*_+Jl5t{z{ zw3gWVD`#ypX-0wGYm~L6g#K@#`J_=Jr?P26-&tyZ<0 zbBNYLGNP-gWozJ{m1wnr3oVp{xmF6c(7+m2CKO>7%$D>br>p&}>RiyDP^P@rlFE5O zeC`06>B$-vUTrkfRpZpG#O24#W@U>xz;tA<)HZGI#c7qdL@tP}DVk-^QN!~84!;<= zMy>3;+N>!MzH*9LPm^+STG5a0PgIJ+Z~bWN{a=Q?6=iO|+ZIBnSMH7ADRdKAVF5a*f@6+Ks15qkrlmLlCuo}4Neda# z-CTgp7sY)zF>^QOs%&tQ`hBoHA>FnZeMHV!4qo)`r3B$fx>)tCj6g}i>Y36&`fe&`o_Ij{GVxVsEUPggIrLGigG4xi{rz`GwGRM zx^$hHg^-zf7`}^*c4#f^XF}F`;V<6&R-K9NGb(edwJlI4wmrLP`>&Td%8U^?=#@*J zM(Ij?XcCicnEH+S{wi~j**7GdmZ?;=J)caAeG4(5EY#SNPo~Mb44I~uI{O>sjiuw_7)v3Z;Jj8MoCym4zuwlsMnsyWfTbk>BK;GJ|)~jF)tpU z!SSW1aeO`}OOUt6i%9dreQWnTNgDjPDdc&ye{Qi@FhITj&N=WCYw0NS*Ttl7=1?Hzjkg11$xYA{ag~NSapHOom+(ojs-ui6o_2ryd6!pzs9ZqQv{-zu zNAM5OAvRCDSmGH9{!GI==r2+yg$xk39Z$MeLTFGX->3Yp{GXK<{i{^U_PO{7nB?ZD zCVr73O1#_&amWZF?MQO@N52gz5^bhJcPK3-at$RCM38&3_^yQ@@}`CMl=+bdeE$L7 z2epj~#8C|+U$$yv`wMl-(^|_K>1aUXQJ8BR_~8II#r9HnAZ)(=bBVK&DRL))^d9p zC1I>d&W>UjfeSL>R1^zI2L3pu*oKl*QgVi42^TvZO{<3~b#{!CIuGg9I(tNIL{sTx zVj&cZIP$huQi_#q#55Bs>k-;3bW(F2OD4zaBmyc{B7$=|g^(%8ZWThwIp|n|3q4?D zDn_PYWUNAFK7T6clo^-n7#fezQAo2o3ePPf3?!Z4jEXt5Ob5W3B6Y>HErFF7q#1MC z0eHDvQ~^ry%W%kHgr$;HM`=c~KIV3O%b?w|(}a~UJ!WWqg;Ausm&i$CX?Z^{*u7jHb3}6sJw?h^FY-bWuNS*~xnayj zSg(zwY=3%}m=3gYP#c463BW0i>PqgHM2dCONkB6O(g~!M7|2T{FrCz}Mz?!HZ_=sQ zzh;;$-jqRdEQu$Nx5PkSlSs4_yCAg#YuZTYy<1uTR9`8U@zudfXaZ@IVpv%)ka@p|5^NvjKx_}_j*&fxzx!!+_EHS`^` zVA#+pL5GDCJQwqP_lczX5-k%Z25MNUh{pgXOu-bGpiQ6MaNzSstSbpV39&`%-0b+D z-~SE#`|As!M<@4+NJakh~0>rB@I* zc|%g|4VVUjGlE744$Gn72!f_aautcMA-Im<27;RiZXvjh;0}Uc5ZuK!enspz1otqx z1tgVjMX*f;$?XVsU~(sdk1@Fmu}=`}#^k4neTLw3OzuJK3jlJwT5_5Ua#Z&QH%JD@ zH1IVv8Q_xT;zc?aeIG!50A*xaxRh(9kb?+^2nW|`Eqpl`qC%-mZK#A26_x;?)P=-# z0!TrL3~?av0RkT^^TAwbX&hdh=h?~Nx?PTqjw6i%q#zq>kpqRra!3&}A0+c31U{sM zkulgTL)c6d$R~>A6S0I92q&VHQ;0-U1c{~)L8g$32BD%stY{GG7)aS{0;dZUvqg&8 zLUOv8oGw(DEgYs}Th*kkYN4%a(pEL$R4Y`i6|2??b!x%s!_#7z$1rAeBEvv+4umx4 zOt%)!wxZ=$)W9$b0Uc+-##oDMt>`jKc?rYVVKaqdI^R-~Yr(S2qEwsfS1}Cuk3?Q_ z6ods?Ig*?%X3rLn<>JwRWDH7&hcRMqt$17}WD63h3pq^W3wgQ1AxmtgT4)BOK-KX> z&;|-1Yd((C{J&Mg1Ei zNvjvRE$r0rZZfOi6_&cDeL{$gqFIe$4IE(6<3>_OH+0Ai>oG$`p+hd@aQua#*ccxL4b7uNDTZngt);7!9-nqA}EgV4MsSP8@3BRVtE3YK`5L11wZ z%q3M4SW=i1)sWzX)e=&o$oYaU98}_3#&86Pe1t`mfD@?+ru4B8SZRH2XnifTzE)aa zFj9<`=%$eu4#C19OgMxKht7f}IZkx>J3*$CEae*c7Q`R-6p=BVni?iNnX*oI%9NI6o2x1~ah9N5UYmf)=QaTLk;D z1qU!Wvpbo)41p5&j zKyVPjR|uxVwLm%p!Au0R5X?qUiQq1RUlII<;2r=OxtL_2NE|Di*d}VDI}v>oIy+!4 zQMWwM1h7Q@P0}V5LkZpLBOI~~)%Yq)sez(qgBUV&Z6TeM9I2{IPKKbu)Xfbm~Gixb?yWEygcXgnc2;!RPFB6$mQzhPOH`WwW_a!_S_igk>fYl z?TWs3?M{bkc|hwE$1&av-9&c$~qkBO3BI{VT@uSOAT>wcY6Rxo$(y{?Jp z=cZ+yaeFuB)ZL+N+iAM4`7FELub;7Y{Z}e=a+;@ccxfY2y;18N|+_) z7!s(ev63;T;q1v7hQ%=z1CjPJ8zzKquM9mWxTI1Nj0%J5=wnG+5y8Scwu=xb1=GGN})N>*+Bl_fUpw!5~mTmhE! zGE@c4(qsUBo#boea>!EvB4((2`^sG)%?KIlG|Xi6pQWD}o_TOv`ScVE+k zrsR>CBSz*GWp{qY1~TNO`@=Kx%{!QzU)%35)*~FrTkWZ2;Fgq~j~TIlmz#}v$V_Ad z{yLiV6vn~w!h3w9J{>?)jtzFpdhP%;hH*oBxs5Q! z0LpY2U*QxKv4ijrS9(o`R#-Q~L@>3+8yheKr6k=5r%Vk74_FKxAehMFkCf5Kzh`LNxp4_KXG7Qi6d`{Al)!Uz(1~=GvEjuSn#YQ8dD7XvuGrQzz9P-u}-W5_*|9}MoPjV zC|gUp1}bB~z@1@P(qC5SF)Q?$WgWmu5t4~W!pa2Cl$DD|7DoW5uM}_5S%{}2u_ZMd zQ`n%Pkz6Tcm5U7;fTtzXAZB8__G0C6=DOw1BH0*`s@zt(S~FR#My?RDmJzC2pi;{1 zNLC4pCqspPGmJE6ZXzG+niILUiL83vsKOLE195oC=Fp8Ikk)F6ax60L@n;MlKEvLi zhUR5vi~3rx?Acp2`s!YYo3BpXW;i0yKLqSF@2eAcpNkltJ+h=IBi~miY+%woyELU> zX!h`kApM}hL17{7GqQr(2WJO`sOc2O-gc)WdX&xfYJat*q_0jOwh9uAV!VhTgF-_y zLNY_z>pKJmXY*kl3Gj2qWru;|AiBv0ofdS4j)E#_9R;- z(_razrVLhySuhyH5q)8!4+#(9THXhi)kx&T$$-N1Mo-OQ94qYl$L%*R|&Op7oY<6#y!pic%1S6nTqO~dedfhaEg-4qn*xW+Vs zc%sKxbL>m>_tz zYGK5nYx#K880{G?Yc9d*ZL}xRG1F8IgEgiKz=$=Np)iMJvXo@;X{yB4CyvcjjbSrf zdx@H1Jk2y!E~3Jy8@5{N=8~1HEs_-~R{@2EIWjPoSm;S|BKa>7nVEUwLls*=qevj# zG*$2kroz9l8rzBs1QPzk)j!bHD0P;2ptGEXu2!M8Rk5f~YU38`s8(4=wW{G!0gD=N zd`OrPW0Izopm?S=IF=cZiDL(&fqn<0Hmw&{G^WjhPOV{KDFpr!sIQ=>YQt`fGHbOK zz1?ZSc3ZGLLhU*kCCow!Z&ktBQJW3|g3TY1=qLwHr=o2h0&;|Feg>2S6?D%~Nycj@ z2y+}~3=GgtuUt1=r% zjo~2iK@O@!;|D+i3r&S^@iOuR1``-YU^s!D+=d>Rg=Of;)dsD7m*$Cuzr~xfeJJzhVzh=0|Me- z7M98AIe}IZ?o%B3u_4}s4#0bEQMyI+|pp71uM6zjnP3VOf)A=S!?r!Q)74#AXl-RrKS*d))=Q) zH~=+J0b(8mQX<5XEo{o#SWqKPPS7JxX^lC%!W=DYV@<=%0ao*@b?k^qwqpgsF~n@X z)+kDUS3W?%qwP?ve zNL)Y2VfACj;e9nZ>ZHWlTfIsr5rhJ!U|8gGxdW_5%JeV^S-CV2cibfWf;1#Yc0ww?qpa+?)k-|LROcD{q7`El$D-QRFYm? zf}sX~eXyPn4D-|Lg9F=8C^^W^(iGkyAP7s4=0YsVwO3I_VS>%(<0-jC&^_9)_cUV-$2#fK=&YY~(9Y=m{2m#3!zpr>v$OrP z^7BdAlh(k?>Ax@W|9$?M4^2*%8$}r!=Hp!9pOTNCZt(4GU??Z4wZusp3^0{SrqabH zX_Kiq@~~_=`AK;!;P}}oz4;jVz_p3m%B+=|kDWw5$g-iTNnbMAU?jHB?j zC)P?4e^ygm@8Lq>vrbxwKPe!OTAJVX@@G!*god~L1(V%DA)j)Ee0;0iFtQ&4?vZ8r zZ7_VE_F#7ud8D&Ye6Z6hjW6_$wzM5ho@UG>G8NX7SqI;6%E5-V{-fRaF+X9cCwpgx z0oI=EJBgnXsx8!Q_&!Uk)PL{2nDrk{Z}^LzEb{0%-iHo@Ht}7HIi$5H@@tY((z_h; zb6@Hyc{*w(d|!MF{mFBu=GRM@xd?B{$hN#mOZCKBjO-oT@s5XD%)legzr4RUq7U4l3;Q_UD@nJRL*Zclt?_E9lNkACc zWmivja&1Fo3qNs*%d-}i6|I`ooNBCg#z`%c7kpKJq8=rMe0Wb{3 zo0=|>DcVl%Hu;_dEoZ7tO=m&YG=`@2DqbP8YsX2Lrgjt`FH^RY(NfwJ%Fxp4m-%qM zu}zL6uaMAGwR8z%pm-0PdeTM@yY=jJ5+2MiYr7J*6^drf0I=nO9?ibyoJuD9+6r zo>NjVT<^qlm??LbCuL_1D;S=oZ_aBmN9p|Zb(P+OZ-M0!XE$qk3i$qh$t4-X3U!H5 zk$m&U4*Fm|Brr%Hs)ui1NQUrXmLzXnRbMhO!8$X&BL4%49C#I$tDL1hUQJBWd-JV@ zWb@%sd4;*zMY`zZ7+p+qLdVePz!<-v(6B(iE_`gLzBTVD^hEpAo`_2u-bA;w9a-9r zl9*^mPy|}Zm}r_>wQX#`2PrK|?m852_*pfn_qA24c6Fs5SA^>CXlK3r-nOrrU3jf? z?lFVgx4kp_OG4W}EbCo(>hqxX>(b>D#y`5(dsW}L!(+bMa=TeX(xK%Mc2Ntf*9RAU zee)On4*%SD+J>n7OV-^y*RE$#cIC93yG!@pl&Dwys0y#i=bmJgcbR!E^|Kl4r~S6} z+udg`)i$A*G#*UY2$uehAZ^IzQ*k&a7xZJ~-Dbv2Ue zll;{W72m{7$~V3A#^;ycjNQ;7{Puto1w~I7&}4e4iB`af*zxW#r0$&5Rodv=lnXB3 zecgXwtK+oWtua~iU(byXBD&-5DRtvr4UIg5?|+vRTd2I=`QfOC8{4h>EM%i2pMnG} zq&@iVd|Y+c>X^w<_y|PDfPl=ReE(sVMQCQhuzGbI;CBPSetO{uREPIn6VZ!^H+hj~@NB2C|Eu!?}caMtNIH?Rlk{rG#xT z5hbW4Q~A}yJd?wpR1J8ySE0T3RO6GO%YLj}|6Z#D@*68B9nl{DZed)g$GiHM^VaU# z%s0EZ%s27s?!+mtyubNc?FL2Xbwh3zr*v7fxXq-LVH+K9&wJzS{ZII2@kb}OxwYi{ zfQ6wIgBM-e(XU`z@c4;`Wv-g#IexECn)-6gtP=;l=0E(f?dha03!LV* z2>yP??$wijnHfDSar@K_Gp>cycKdDj>CYd3kv%^0=JjFwW}LgQ?z{87(>85iaA`rT zcJRsO-J|E#-F>CEdcySm9-&jB_MZ9`%-1zAU&n0B*S`GYftrxdPxmCtqkRp{SLr`u zzC3vkVbV9XEziodXu_?WX*b);(=9HSA00UX?Uk6*=K`qzqj0DKl{k z#^vmLwfTsNu{+$me|W}m&llcx@(W{?%NtWo;tONK{EV9t-`|sSfNW9`O_6Q$KT7jk+y= zaG>kzhf|IxEpP7gdxYPiLlfss9+9m+G^tJzJ^6IO#r1!z?i{^*<=dW}OmT~j&*_us z+{dl>NtFGXcE=|0opa2FX&{V9+S4Yg#Ku~+7;vV4VnyoYk6#HtB)zoa&CUCFmGQ4( zv04iDVp%L7-SGSb@p??!Ikyechja*OHz+tzA2wJYX& zTWmh$@KMT_K4E>QTzq|ZlMhn^x1Bk#f7TBl40r4w{p+!HH=7+#*!=-_Q@8NW>Brvv zFYS4f@mrIlKFXGhemYoaTI^PI!t=mb->4f;u6*+I1^4$C&kdrI3glb9o|1oRnJi?* zr^%DE)uR>DLi%hyF}ap{d|yA__ink}qEB`oA6=Axxkn$bvfH0-n9^%j2sJLT-Htwg zJl3`eGktw3X>Lp#w}d(U7Hvy!w)D1l;uU%2rD4GiVZD9~^$Dr$7*=)c`jAQext8hy zuk$9m9boU43HDBz5#-gBcxn2EW-gsr52a$J*VI{ee6#2#t`Zn{eG~K-Z88;>^P>0T z+X;4|mDMgJ6%>GRus$ZJiyT>!TYyn!V$66xEJzRbt3yyA7_&ez8HmY$)6V{t1=~>6 zC#?yewab0MK%K73{87pIFE{(9;K2UdSB5^G>+1CLPaR9jntl{e9eC}@sZYBkcpfjJ zehBHMoVstVF7EEF+|@n0S1jLI+I_^ruJZ36wfzHg#> zJhP3IWRs?`^~7rx_!AK%16)QFMVH&;^0BViCrML)G8%+?gVktIO ztQ!wT*~W^6{T)XRCrp&U_0RT;p{YI{UY_6;`@z+M&g%m=54p+(46lv5cQt+F_4t?k zzKvR=dc6O#pMI(5fpLlR3?BVgM+C%gTT+`^b+&N(mQD9dH^&v-d-+P_gng&&8|Up` zUZwNOsG=uN>V`c(K-DiDY@|&s*N=-s?_fm#W*p+`Msia*N>bEvXA`C3{Y4 zyUe7Wb!N8Q{mz+$`{gzJE;%osk+8Sf(P>4MZAT1S*z~^kR`NGF2UbmW)(eY>v}F6}k5*ZA2L)y=v|`rbRVG)Gyoy!~~*fW~_- z6oqQ;7OW4?F+E7yP!Z&s-JE;tq|>Ray9Hmx9{alS<yTD;YsuQlxn=f4{I-u8O1aNjbI0}d-(1UDZJlyx zNNrbrz=9voj)?e{dSg)6BVSFa+v4^+S5&ckX~YLi=OIt>7S1{2RO_@UG?D%0vk2ZK zlY{-fX|~_4xxvJKYyS=V&4=>AJXq|IAie|IZ#_u{@tFMgmid2Wz2B|LU;on&-Db8O zH`Kq$>78fJ?wS9ZXX2W#PP!$ua=dY5#gX_mCA?03Ren6B(j{(ovo15&&P(IHzNdy> zdVS}$sdC4AoOIr;sRvr@4{G)1qC0nUw7!45esPNXm5T{WYj%4k@2mJd=8)p>fDaC@ z>mpt9;Jy4=Ip6yH7@NFq^5OG7vHsqxC%@V=$^M+g_u-J~)A`|V{?dnE^!pp%%-wj& zW9}RGk2?Rtev~{cX;aMfce_!qbRDerZZo)c?zyjJ##fd+n7BgSwUNT~?!@ao$2_JN zxF@ocC?`Jl`bVccW4C|qm-6lh&BsLQM;}=D(@SNuYBHG3?hfn!xVLZv{Z-5EDNi2Q zefFtNWwzd{U_@3t&w4*~AzaUTJK0)q$f0=SJi+)Hr}M^&r<>oJ%w-w>xO$qLO4qp7 zyi&bZ^}mpSH#Sm}W`&ut8gTG5ZsA&WZC+j_rJ=*Y*#3FVLQLrzfx8KIYEbhp)Xv-#GK} zG^O3%if(6aCA*w_b=Ays7b}JwH|)MJ`;IJNlH~G?wyjzgKK$*Eb7SWFJKU3>Dcs?f zu;`tk%A(3GH65yQ{Pw)YT^W?t$#ve_x=v^0O#>es(7!TDAJMKzwf9P4#FI%%=bt`R zX1sIj+bxZ+CcHgiPe{7~OLtw}F<#Z>^<&9J9yj=X+s9<5^`jdr8*xX!Z#3`M@U4S; zZ}bbe_+ZlH1FxlCT2weYe|3lWW51Q|df#pApf)#`ENl}j8{KqJT}1O?EljsmU;1u8 z6t(gEgKOhApIug460#*>&j?SA*C&pUEY4T+X3HWCjt%eUTwRzO7D9m_2zr0<}cdUv0$gsyF{kGG0J1t zLep;Vln>VriI`e5Dr3{|8t3z0pMwXu56$fn=TeA9Vk%YeXIc6fEa^47bmZ%*9j z@y*rduhuQN5%=>wI=f)1YW&{3y%&aGSuyu3eVZrTo_=X3dNiv!@q57HPX0Yzht@eS zeWW)@Kj2N$RSZq@Fx~z=fBETQ6Kn9e+PD|pHBo;R61}}`5E=xqrc`>4w=H!+XV6?x zsz;+#erfK0_XQ6|Twij}>B>*EqHoF+KG&v-y}mEsySkO3<#X@Hkr#E<@CJWzn&uQV zn5Bb9=jRO{8qg^oU|e*BKCnZ3eVDGng+*$jDesFR-6#CIde)XJGgRN5-Eu7Mlf`$U z67zce_(^Hv$o3v7d789O&%U$Q*inDtarY`o+T0x_PCw@~eu^1YXD=a*Ns-!|d3 zo#FO#<_%iDFnvevzASg|*oWc89ZD~(-QsFoe=Ov!<>Abb*=8iD_j$ zPcprUae*u~(ad-LHBaE_cOz`{vOn);tClM34HOz0x0KlF9Z94uh;JXL57vjk;L*LYdInBYXmWk7`%!${(?W z-aORvO62@pzAS2J^4i@O51g5{@qN!(aeG4+8TuB?Ke;QUZ?*TSL7vOnk4fyaYG`nm z4=+sH)#u@i&V#>Kja}Y;?JHf2`76cJ`%PQ|Yj=k~YIHW?_9x!Ex-2=L;@Q0<=b+D# zaOpt0TmIV>IXwnU?a*B5)g*n@lU3y&V;mgH-@bGEYVp{G;jPEFbPMg9y*})9yDv5s zyjSoJz3JO~vtyc^O_eH!R~9)Q`?Bbm`=KWr>~m(NoD2$dJ-Euf<9E^Rr^Uz$nW(C> zeP%9w_2e4IJ52EpZ%;erxO952vO`C|%{=hKl#U5qGD2FrzO_!bg`)l+P)h>@6aWGM z2mpzEoJPXOeEb|E0RXVl0stHU8~|crb7e1hHZ(6uNmD~_Zf0p`b#h^JZ*neWcx51> z7yu}s6aWAK00000000000000000000008X02bdhi(KkLjGdnXIPqTa4J>5yVQy%T^ zDI)14ArL_VM36+Xh(ZVfB51@cGMM8|0+Wr%U@Qz65o~OO2?m47IoSkbz&3Cs0|sm` zV2lGkef6vEnVsFe#hCB)`~CmVgWz_$tE*FWb#--h+IjDD6irbSo&Gj$Qk2^i@o%p3 z@Bgi%zjXW0)5=d{zZ`K}WT#(_*!|Fz<&M>!dx*E}$d2X9R;_Z6?l^Eohqq=`$I4Y5 z+b-O#<4E_Q6%$ga_-L8NqIrsP&?&0&!TSq$_tX8eGEzyX2}QYHRTL|fVTUMM#CNNr z+=^29DyR*?PkmA&*W8nXngkUZ6izD)ss8t>s%&qB{I{vf4XqXLA0Ahgp`S;bfA^2_ z-#+A>aP*2}j|TY1swf-kuGU34V1ifnmXn*y_Nt`M4b_Nq>Hi7diX+_RK12)ZP=mKM z%AhJy<$KK$W&2wrN{sw_s*3S9GopMyN$t}i+WCwA>-zg)JNa}GcW1Re*gf*1v(J6)iTTe@-{Hsmzy7QCGp~Q^>@|b$-s`H4zpP)g z?Cjqj@y77uKVE#>vi;+~-u)-j_V{}0>}}iHE*?Mp?8R^N@8f=Un>qN66VI{BZG(0= zui)M{Frnz1?LpB zNhXsJ|GW#U5r|@XKG!~|HJ2M9tG2FeQ}8BoIG)j3eLho%9nnUP)jZ)4d^!`S1TM+s{qtGD;eXvo=tq6UnQQS6!KHMmDD0qE- zFF1NFm{)a)dT}2Tt%DeK5VHmVIg+2 zDmA24XG2;|Xh^Gx4QVw=Py_{8TME~NA)R%Q33ZT(b&yGo>wi~u{UDQew1)McF6xhhteq0B2}7pVK{l&{Osj)TZ`@Z*wW|Iz8rHw7Vf|+|tpBWr^`G6a z{+oyTN_EH_K^YWrZCALC44GL6nNxQ)2MoRXMtpD~6>%W7j zKMJyTUbrRG5!cWzk!T^iPZp{PF!vUbOC zO&GFM9c1S^$S!q|g^lY!QLC!|qK5Tf+_3(;Hmv_{4eP&q!}{+b>W_k~T^z0nLw2o$ z>{bWay$-TRUHwPP377Yc>iX{))W73jn-ry{Y+sW!pwQ3iLzhT8Q0PDFL-&%jpwNHR zhwcq}>3^`ZMfeu~h))ram&p~FPzr}d%xQRr|H`q%o<{T0j_Merx}!AsE?XY_(9 zE@|5FPBmX(-&&AD)%2*lhR9YRnx>RVGVVa=OC)+)Pe;>6+Du#NSUT>09g)u)D8gPr z1oxPRNPAb1js? z%J+O;eW03G5BOYOT_$<8Wk6m%FzB-b@#=EPt1Sca>Or#awhYLtD}u3pAYMIKVao>M z4#2C2NM3CjkXH}&d9`IgUR{acxCs7BeehujPKe-->w^zRa8d++R3CfR>+!}{PO z(N9k4J)o*Z;aj^*w5Z!F+I#?v1N}B%+Yn{BkFpLZCk}*i5Tm#!G(=b-5Ka^fIsn4K z6$brgL!?70NGAblz&al)>wI#<3a#`jbV|eW9wy3rYD0v>1;S|!%X&nmtfx0D>yfgo zXNV4m{`Mo;wq8oF>Tjz)x4*fcE8kat?$~hD=Z-6$>~8~)4P~$%l{>B!WI*q#s%pZw z)~%6g?zcqS41l`YZ<{lLGG73Xs*IrL4HU_%(0Vt$!#LNj3I=U_e5BS|q_zr@=_9q(A`Pt| zSw7OxTBKnWq?nI1tQKi_1t}iTr533@R>4a6SRtT~7O$Ws1GIPzT1}Ih1+?Sg5nk1? z+XimNUFw_hf0Dn`wXrI#LLIUysFs_F;p29^hT#)-BFymVXf|mlLl84NIZKXYb2ddC2y|bF^`yphpYnz2{_lIw{}lbJ<%?b?U!v*S zCNYTI)lFhn$Q>eYw4S_1J$cOrzkb&v)=zoDO|1Yb|b#`PwYrqSM|6Tc3*NLKaeMqnCL(#^4=u3&L&+R~8(d^67 zY$NeolxWs6FwIW>vVBX>8n#hg`|2JQZCJCqG8@!Ad|B}SxAOky<7Fdt^S`aA)JnK7 zJ5c)6`R|XHU+IAVZ*;(~#^bNXmaoQ^|M%tnO8$K%|Ngh+-}_WygX%nd;5t9^WqB>F zcWSv}B%ckJDl>rHto7gVU)qoTGtQ;NsU^`Vl^Hl2bhVq*0)z%U3-NE#}^$Z+a?)GMpYD(+EDYprYozR z;e;92ykmTKLhU_`l45sK?LFOhrwr5i4vjXdcR5ho36#}sJ)6#Dn~G!XwB58J8@1^_ z??(vlKq*GhPoFlnPqCZwOCUGx^jRyXJX;=#$V3qD7D9DLk&oO@k=x*S?r4TUKXb+a zl>~}A7HK7IvjopL^1LKcHoO-AKtR90Y9h)=)TR7L7DckEBfS#jY_zS1B+U-82j#p^ z2)xlAl(*=o#akF<-;myQM1?bnF(Tw^_4X5B$EnSdc*V~$Mp?$Hvs_Nms?dp%eDpY> z$E(p#AoQ5`BK>OK+fms%&iL9qiTC_O5|l`yI+27?lP58zkDes-WC)!)dE|T8k+Qoo zc%`B>lUG%Kti*0nl47UIl}g70KKwN$_O1{AjneTqAHI7ewqHcTcZ_r#9+B{GMq+3B z@Z%yK8+`bqk=Qdn{GLe1D?a?wNK8>B{QXErT4i|KBuzOx!bd_I@$c9W|Bemu?^wZg z#1)~ox4iKIfvkkdBuZMnG^fzr0wVRrt&$OD9n+iV#}MeLSQUD#WW=h_msO*q&x9i+ zZJnAyuZnU)ls4pC0Z4w$*hh-U8g#VK~aoQ6hRGQ*iavg)%C%cqzQUpb$Ye^ zu%JXPAX%jBrKAs0;-cMlRYsJ3zBo-uU*yA2P)2O@;kPMGkNA9agEHnhAO4=w^ba5Y zhBC(T`C@pasnh3|Tx85_AHFKm)Z@bsj*R)1fRD}5D0MM*PmNVIUAWFt-69pc_f%A; z#9Sf(rvw0+Cu_<)N-0KsrpC*ikc-7O({Lw%G!ubix|8rR+{s`-qx1C^Zy7a$$tX<1 z9Lp8wJh@jDY3@T`B7*H5L#WOaj_FLLPv;!(avzj1dQYUHcz2n;9A#N-3dDr>h>uvX zoXt=Ms}O>5J~vQ43Cbt$Ohfz&sR;4jZ=!yvsrNRxWjeWJPM=ogRGvXU>p+cMxeHEE zipk|gEQ&Z2#0nA%(J=%(r3N^QoP*uj$YOK)Y3?_^O=T+20Xet8fV=J_LL<6IdGB!& z^L@{z+*+83aU-X>TN2)xt007pyynhDRM2{(AxPXtaVc9RMR9wPT4&U`hyt9gK)sCW zoj}PsTZ87_jpS_QlvA->?+K9ZtC4Ul?`(r~w?$S0(qe3k4e31tqw9u^F=rkci0fo( zOfsE8?)-o#+xdeYp^LQMbIE_!%83>` zv<(GsAHvh}OPDE~eSnpnr1Jd+HvM1W8nydJ5k;RmSnd8HecSt|Ce&OHoNBz7&6S^1 zsV5q0_fHAZgCBBV2ltQRMhTuI4DJVa5cM+P6HX~^%+rJ+O!<)hzC(dsmtfb-V3B(H zK+3%5dN^}EKcP?8r-Y`e-AGvN24q9e4eZ9Rx033E+Y{n5e*(Pn_o=7!+{ocK23S4k zDL$aN=X|&YynU8?5VE_8G4Y$5ymL5WPC(riz^Wu70!3JUiF+_Q{`y{`Xu{03&%V@j z4*|Z+2oZX&1%95Zm@mk>7Bg!1^+9Uxp)A73a24}QxbC99qV8v{-14ven>L9k?n=nz z$tz@iZ)U8Uxq70M0urDy8;JtREP>DsK+Zi3%`G6JoGsPm%u#c8BcRY)KAdomGXlVI zg40w@G+u>$dcZx9;i}Rid8@tO=NiEKECDSTRy%e@p(Kmc#MRs)|e#v zhNyD{gveCYo00UBqh6@$&UYyqH+dIQ~!B>7^6sr zDTC2wTEP3g)Q)jte-Gnh8F}U7eFuzHy>7}Q?>CAjsgF{{`?jhIreRFm7z+iDtO|zK zNeILz6%1%45xEI{#0aH*t(4az<|^$c`0l03$P=aPo-So~MYi6O60-Hal#s1YrG#vK zF(qW{JN#XDZdkVNqB4~`RpL2zowYIu8`-2dYv6dY_v@@bAtUFfRN~%?5XUC9;b%}A zj=@*}5W}$uR1|$?2(&^TTW{q4P)ZriIM@_lgQN=0g2zrEUVdR13>_6I9L@I zxa^dc4i>{b_XzTI%nyj+5WV*J4%X_3uYE2o^LI(ig7=A*5>M%01{LZIg86 zS&G{VSRDlfl(4E6onV?4&Njs< zcf_6b^-Y^LRZmh$HVuVdxl$Q^s?aM{rAs;MVc`bdC~>8Y>2@vm^-fbQpNdv4pT-r^ zaI7hA;^>Ih*n6?x__w3+&qLz_#BhiDM$w6~h~&D^{7V^DBl{kevhR_K?0Y1TeSeU$?{W0o z$9%c=nlIOWkABAe=@B8R} z1n`{0mhDF}Mz&1P<5HX`kO^6zk8w!tVoWjnqGOxocrWLp$)plJhsSj>hiR|jhhIs4 zc&5S+&jkGNq2z~OqrsjPW8U*{Kj-ttyFPDF>6H$q#WTzsxd}(0ifcL)`D6GqtGRGZ2CT2~+N#7r-6~l|?0c)NbTmnk>F&t;|ivi~u3t#3q`* z;zxuz8_;Vm@lzoVc%i~cJi7jd)5GsfG?*&f&P|Y-7a-nCf^AXqu1CfA3y^yu0)HzK z#V46jxo3x>zAV@fQH#eB+RH(_--&qmq%vAF zv5X+GSw=soI)9F(KRnjb7{-60vG(b3UuYxV@)SOh zDchg>f*$G%l|CW)gT`WwMSbP3SQLRtYl!GbK|l-zLv>z)<73}}Lcdh-?Gk$`>Jm{z zRhgrVUgojmMSVYP4Wf(9nfC1%@YS@Kg&E5Z^U$3B6 z8wEQXhNgH2c%pncMqM`DB$;d}(>sBZbH9iAIgR%)@3>be71OEdT@nt5y+?Zd@Y^fl zF>Zyb_?nOy7LD|5k=09Ub$6p8&4O{$d!`bdCqBOAR(G#bYRtGgn{l&xvCH({sYJ7@ z;@Ja4wEdX2-ua*~{$``)s}*5`_fmr>t!r4*QQhy;x8oU8xp!4QU;Y8>Q?_B7!o-P{ ziJY;~w(@qAeqB;(0y84(xcr~ErjmIy^NC`vqm3oxlDZ&6&ymI*t71QJLfQAr??;M*|cU9f!0QYGyq zP?JDSCivFMINLqzN|mxxz)S%%RY^28V5w3GT%Jj#T2v`j+D;>ZG!jTx5=bZbCe3)) zm`bUd>?WW#0ktW?H(tiOq63u*i^@6{l%rTs4iX(SV5tTraPcOU>gP&OD%-Y^fQo4}2o_r{9_ zS)OLQ8L^uYySWm(Il*^##*1p-j7B}pSe3Urwbo)JU+HgVyTMr+$b5Ab3M6V zGI_3`(tp#t#JVTa$DGx{`p3jU)$4yHJ(ubmZ#X~ULU+Q~mV*L$FD#Mp($u_PPmwB5 zZY364TbeyviGn^q#Dq2O-iRO49OFZ$H>O=Xqq*c^y{c(m0i?opV90$}BE;lh=S`xhSnM&0=%l}sy{Y%BMA&Xo9+(EFU>v-Ml9v1exkPR2m(R)=pI5#_E-0V-x*{fE?i-5OE#=Lj zP;Wb+pv0ICyT4a>(l$WZVRe?Hc3+YA8dB$rcl=B-*G-7orZb;1E)MdR=cwbQT0>-S8XG^v=1I-@Kz#nhjRRUd<=rKeYDbK->++FW_1pp8EgEzsPz!0O$vz%=rA*Z&uugJPv}n6L*w3<7HWwP zMC&nNJ0F1jOULEViYm3}pAq;q3iOuKPqRaQF{G*-1!4Iq&Gp8%N;P^=MC)wxj&Ai+Ntihf+-Qmz-mR_GE9s#Ov}X4> z;Joj3v{mKPFn8Q{YTGLVQn4$izZ1SA$dy?gkz%Inoy8ClVt~23XM`7iU33{9Wxqkuw zG-EKn0yP49VVFFr8`BM}&Dqxe@4#s3!n-<| z7Uv)EC7tK6Igm-6w1v-g3E6qR3J#yU26aukt5H`R!?9D|ddftoV4Y3m{dV9j?d@Gj z9ztIwVtMr8X)?KwMh5>x{%K;b;aFxl-dTuZui;p%V29&)cMw#@C@#h}`ASA(y%)%n zO?ht*uZe_ISQn#6L%mOj2hBIc9+IDx1F_iloWUQ5{C z<@96QY=mJkBh)V?Lb2W^iR#^6$zyxe+~$F}zm)~b5bwniQlPwKXV|WCkXSRhh+^zU zfA6Tg2UQVrT2W4eVV6V&EUrEr|CZ9A4%8c2#vu(ph?j z@rY=#`r^EZApi=Cp{j-xLpVf)^8(u(ROeGjrr$}=Ulb)+^Szk9GePf9Ml~Gf1{lZm z(h4D=OZ$a}jZ|@ZM<PuCcH(65fo_RZ5ZR>q8=Gv)Mfsy+Y$&(Rm+r2`$_uq%CZ| zvd!s&y`V$kob)Uzvp?SL8+DBcufa^Gsfiik`7x?*q@(WfXzbyF_YWUk#Ty1V0-bMhCJE?d=^qMp;ctAt`flCyreb8<@Y0ydRRN4GEJo zLKh`+66e_x<_%g14w58Z%Q&I?mi zQRD=6l|YZff)VzCdWVdw+OnUbBDyp~jc+vaqMtOeM;3?YKhMC1iFM6vRPAnuKIRSr zotk`~4OS@5D`)7Nkc)n%skvG5Yt5$9jBuLcccz>B4Jt*kJUAleK5h;@UL<3%=TKH07s1Q}UptHc3_Xm2{R$tW+jRZMkxsWT)f2kH-zbOa;*$2y=`R zV0Jq-m_R9PRLc}2-h-N}<#`m))4|S1;2gm+hbLWIj1q!Zol?2JL%CA?PxjOL`59WO_LR7^HstUQ*&lI<j1DmS;yI$CT{3+->q6>LMwwWF2uO>y>!$TtyWZ1tv5l?z)tG%Oh2mgD8| znu5Xq2^%%uhr~W1hXf(b4~I@Njq*5Zp5vS&BiMaho&@TZsXeimMpX_Z{5hY8pNB_v zCxfuX4$GawE#nWnJ5V7^p?Xh6!j{+(@|*ApH`Pf-xL=BTjZsRA#awQWXVy%<#9EFx{LD)vCZ7H+HMY0Q>S+kvTeI(jR-h2ewOjS4ST zpx?=L7}kBtGtf=Oao^~I(}B}lO2q0J&(1QO1+lZHh);V{PbYVvp%JlcffiD=@=Qc8 zAv5Hm2X9KM-6a-dvm!XBz#g5oWVPGjfZ04M2%qi)HwPomiTGH$yM>58jzhPUQO1cV z0yq~@w&ExPuysV7WsCA1DqEr-Q{O#*ygxhA+-;b0?zZSfvG$zkj0FM6PmQ(bs~{}| zX{mw?nVL4-dFZ$#AdQ46!D=@sHPuozhzFzK%m>OZ$r+;_pct zGJ8Juq#Z5xq`fBgR3WOn07Tsp#oGz(`&Mnx&Varf;T>U!*VQWai~;2Cg21;$6nxx; zh_VRK_aeL#jH6%#Bn*Ju#R&WZ&p=QOW|vY&$fI^6)ZG;+kt!dbc|P+P!krX2F%-T# z*yQVedH3L!sf6x{tlr@y@mtzi?S3opxnBdy5-`TJI(XjQE5c`A0O@%(!kg1jm3+K! z3t1~!AC{i&yqk>1K|>OTq0i%3jQ; zn*C*>ty>1#LWXkj&aq9rb4=K=rYY(Sf3Mh3W%S%&zbEHk*(SzS4Q&$xm-03-K?Bql z+r7Bf!8Wl9eGv9u5Eh*KnJe~!Nv;+Qt@XUgyu7z}>3FDPXb5p=vn?Xtn9+mxc6}+r zjmYw4GfnMgfff#dkU4Wap|d5pDrk#{e-0LF2U|mShy>idg=SupL1)oegU;NU6u|Q4 zJQ{`23|@Q}GEKvXY{(Szl_J#YAJCPy;kNw~vfc*??&2y%Z^^YQF&@mFMvA;*h>%I9vw?m439pCNrdpr0|ROoYwaA(-Lrj|S+AntIF`ONaZZQA+i)U z@y*1(Q)dOX72sc!QkG|dRpokR{0sish9>3MQba59_cv(Lz>l&t=w%&v4 zSY{81Zsqdj)rk5LC&NXt1g(xjKk7H4Xgv>wE2BXE5#wvCj~L6S?$Kzs$z>rX*Fah< zESr=TC>IvuK z{S12PXF|95n=c%lV<92G0ZRT$1pT90Q!!Q6RFFhhm&R%bKtfaL=kWo*?s16G4fP@e ztmd9gHDSjKK60q3dxR3%3-DU{@!AW@YIhwZZ%j2fW-;b-$WzrEqIM&A=5=@qzI*}- zp`e7_;um2e-4j_Lu>YG#cx~@V70AiJI0Zkag145d;g}PY0q_7UpEh82jC4AF&fpvd zDoJq<3HcUi&J(PRz+`j1dnRylRdIpI@XyOkgmLM5A}Y6Ef3@0ZsjO>p`yD7WO@M^j zsB*&i^~R$K)}w>7r6y^XlBRoBM4nnoT4EZWv1%HuGx{>k0F^#t?8~}H9jURp*rSO8 zMS@J+vwaPuM`z&Qm`8voG}HT76ZuyK3UzW8-j5=NidND&2h}?l*{4)Kn9hO4ZPieC z&OHxU=c6PdDt^T=_6ra-r;e$BM5&^p#Cm|PcB8|H(;uIpSZz$ne5!AeBx<<0Qp*(t zW{veM)>t#F$C?53w$A{y37ShmjZ8zIj1{)pNywBRD7?n0yd07>_%}=Cu~0cd6>wzFO^qzmR_#CO`S><9I3HA!?jC)VY7xJKZBrAlb)9I^;sp1YXRuhvJPkzJG)rq7N zveI}F_-$ebj29M9U>&NgQPQ-|q>qC6drU~QpHyA?10~4xRm)%>%pR`4CZ1AObyxIE z=SCSZ4l44v*!<|y)Sd!J`JohTapXVaFJeP;|#;*N? z(C)`m^Tb6TNpkN%B5t5k_Y4w)1yG7}2nl{BUQZLFOs`v2r%m(cd@Wklxw=a(3HS>MRq^{s#Xnbv6zk8`A-Oi6cUkvrQPkGz^eX(y zr3&#YsLuRaDK2<&P&H4s$o3+hlr13|LF-8~{h`zE8qC4QRi;QV*mQ0Y1_|Sf+FkJH zR99nZo9#E@pgga5i^kEbVGRn!74sA{`$E|1cO;2lzF5qp5Xt=x&!I+> zHoYOj8}pn?P~@!P9YUz&{Vo!{6gm~*T!ye``_izF&j=P-jGW z73!n7>mlObLc+^Q?Xxenqj~pAWNGBGW^oA4=xj)dJYzYLvYB6ktqZn+(^P&xpQdbn zl&{Z^QAt&EctwGQKCA+kfP5q*(hw&NWaxp75TlPRftHH(z9x%%=>o(qmYz!c0XHa)u%)=F9J^&geiAj?mCBMY;>EUXk5vaqFI7Vau!p==$|Fj`NJ+XVf6 zi6ZPG!mi;+Ge<|YZKL17@XYoUXL z8QCZirDB`u=QQI^#L}R_U zwJ-cF_a>0><_J$fo2lkM1?h?6w*Y=?q;lig8@1*L0lua2cwqSDo~(@6)h~CevT&vE zPAZ2VQ<3YxC8F$sa$^gcEVmvmcf2^$j*D`GH!S82iXk()f6O2>RF21MtsD!x76+f-eKAYQ_G9I~Jbd>WI~46E=s3t5p3 zTOBXd=2k`QnK(eHwi&^FDE%F+RBT3o)9}f*bDRqdrz@Aq zJB(PrF%|~6d(kBKfv8DCpt$#kde`+eH<5-ovXA#J3mO{1KKWK<&()QFnKrx94BKs|L{W|jVt>p0h&&h8Mqx`(h8h^>U@jQ>^*0*-=ZBP7c*?aU|Glb+y8FZ_*p5Vev7ocP5`GIeeZfQ=l-IE#%jjzwn@{w&rt%3XD*LuGO54cT77(Uq zb+a^5T!ldTiE}SPa1NN{FT@skZ%MezydC5)o5V!P~gGn(r@G$`Nq^$2)SrHSkH=D!4gm zJDCRh^J4n$$M%%{{KdUwae~(5}sHp3cdj~43`6qott z4k0>2d}BEKL_&MgvdRwo`tt^HNB2@L&xgplIL>rG5)yj`FHC&!l*{1?=je&TZ4 z^-Nf2snpq2rp~IYSyS6U=d)|aFq$@nKo}`tr}-VmYm5>`Upm1zf5wR(we!p=QYAe6zsBRXrw&=CHPQ~WH8m_BQeNYmB#mL`+9Y4jlga-QW?La;4xJ>SQ&YmsQWHL z2d`4U_ZBdg?Jo7yxJ$!tWlx1{R-Jz>8%t@zQ8L<(;$)Y` ziybxSZBx<$z0F7W^Bi82=g=U%m@!NyCv-V6A2@_@pPodV%2L&_xFOw`iY_!F=91uw zUyb0TRmxcEQfq3=upCb$RI+0Jj;Q9?nz%gN5$+M9{|`|*=kqnCEOU2Lc)p9fF!P06 zD0B5pcE(WzFHJ-@o1LSfK3b)O#SE06s^;T;`LW*K6e`fY1IbxVsC+%PYlNihzZ)d^F&9^S{ctQjwXc`@v?eT#MaLweW|TKhhN^FQsPAXg9V+> zR$G2eT+m}jE9a?8%IHPD&Ez0uvOGUOMUciFrSfSUrke0fP&+7m-BP4OW6IfbDBf2L z*2m-9eLzI)+}}q6_X&Ux3y;j-ZP9bp_=jP!#` zf##qmsA9q+mn#>BbcKyj)^hHRJQ)=HKT?^zo3CF+Sr0#w?_5;f???Fj{&=F-+42i4 zpn`}oXDWSWjoritUSs{aWtCIEqT2CdDH9iUw#9ODa$RVWazljg ztJ2i&rBIxHQn9(9y;sAQG)=7(Qgf#>a}@U^D$f8TWwZ=4WSnz=gvZjjtVBi&09+Gf z&Lt>X8BO#=Ln6ckb#wzRR$}|j}`o0Dg2GnJ}K7Hj$;0A zPUxK}Rm&*Y|4ZRTRikQSIlwS|)+60%e`hA>;acV#%&|S(BTDlI zz1i6umF@5zC6(amS-x7q=kzdFry1=!;4yNcwRgD?BJ23Or*jKs<{dRrSE~}z8EmQDhp_2pYXT2*x54<7lt6b|wR%;&&q~EA z^mD{q<-51|bNADqQF2_AgxNX1wsraPRDrb74mYML z3fAn-qnK-GCfruFFxzJ(Em1zKxvMVIPi^?M;NxgK{U}maDuq)bNCb_Z+4$N z&lZo+;v%!jT^Un|`izO|&+v6o4;?Wv9a+H(qdXY+cU@w$()w6Mw`^9n+Qa8H zRav@B@EXRwIZDl2FBRtAXyhd&j27>%seD7EpaPzJxsL%j4^6UObGK7{Ss&rK?bq4% zvyzZuN7x=Cl+k-AJV+u<7n3 zdS=3TkV-0!xSIYhfKZcA@-UvM{l;^^+Zny+Rk(IRZ&`?(4->km7$4h|5t~C+9)fV^P&ikz^DuO2WEAf@QNhDo?%`-%`X0gI zN2;*@uR`w<@u)|+h`t(PIhLEakc*MkMX1T<2VAQ^%GNDAdL_@~0W+$6{ssFMZYLFG zvvv0_f^&)Ybs--&sf8%pr7AVFAsveB5>la?sX$Ry;RG?5w&PiT{@DdMPhs0DIU zXaKVX)hQZpT)UU@N`yDA!9pU=)=gGM?e35F?aD4k`tA#q!ri|6EoIw6W!{LpPmafY zYz5O>(`o4GRefDC%IEfbC_K7I)xyOxcyn4o4@2Y8MZ!GAVF}TAhPxKwpk|8Xw!WYr&+qru%R&M7LM`tP2`)Dv<0#ok&Bdp9!q4nh6x^X99(RX9A^+A=42`xHGnIj1LLN z@ZC^TS$U^Y@HAkRmW?_<$U>_laGS3;>5%`*iNY=? zYED|a0pmES6l^tQ zy*Ye+@VzzLM5R6#R}NYw$~A#!jO$hltAul=90Z;9s(=6aS%K?pIgtDjg>nAoqT6g@%X{op^1EtqgKS&Q;QB@%I%V^D5jFn*( zS415ssadMVi{e@+z50~Dc=na_TGfWMd}_e@Z>rF1R5kv61K|%;x0)ift86!{%m1_sG2j5-fcpyO2H|6lVg69Y`M zDF~{k*gvFg^M4?}|H=OLh00#(Z*xMtUek7WeWA9Ka`XlIev{Yth`AR-akY(XwAqd}cl<$96z4mvNV^+=J{8AiW`_TM{4pN1k8=XG&S-!fBKEuM%9U(}Bq`wG)L-XsiafA(=6cvR^mez$;M zn2)Oolaa(RU+fCQD;MBA^gP_$QCyTGkCPVt<9vGsF6=!S=M|?Bme)-`ns~r3L_fYM_Na`c_qLuJ&(e>rg}2 zSF@E>TwqPz0dF?<%{E2UsrmIe|1u0%%8ZS+k+htR(8}^+KgX;Dl&w&IkaLNd%4gFe zfewW`Lr(#1pW3YIZco*}+p{^I^Oj7*;m`7wtWA}sd+$xFI#S_nGhJD&*0x6ZdKJ4q z)MiKtqd4Akr&k{a*Zv>axS{Ttg^>#etEb-Z?cG=lB?X$*Q7B-7ll;d1yr^#aq0mp*+8< zNo7fwvbqEIROkCBk9Sj7^>M1f?hjO!7D(L7&8)t2y>+bj^=gnj;L>+Z`C3HiqtNmX z;o_^Je}t*v`UDBP@{d*V_J)y=w>&n_b*_U9_qt|z6WJJuRsQY3ci|yQiT9rpCV*88X-iTpf6q}#9Ke?mXtzta52?E{} z&+*zO@%|VH%36}i;%+h5xf#XfF(6e#$E;pUNW9+mQx$WSS|S#Qd&dVgW@El}CTh&a zd=R;6BjC&5qrAs{lik8U$_)OEenXDh2k37vg-Er7=l>hPfvL(Y4@q3raKzqR;KW!3XaG0Ec`xg(L; z{{A_f)jR`jwH)1V5&Gy7akm)E%tqm0&VZynl6HQk@|#Py$w|spkoWPt&>0MV0PtI| zkLb?+NJDK|KS~%Gjg3~mcO8rb7B==7TE{&RP05RJJXgtKvAjV{_8PkWh=dpz&CTm? z7e-0M8yn1fBbAZcDkDUFbk=#!6k}t!3<;CUV9GL>c&|(9dJ71DJ^JPen}^;RQ2loX z_y%e%pZ62-6F?!ohc*vgsjSK?l?#=(n9ll~bn#XUC#E@XRHsF`sQ%*wVl5n__}M(C zb@o!R^Q(6))=7%(YUf~Y)EpZ6%D1aLUL1fb7fqG#P>uUK=r$2P0Fyv$zv7JZs!S7+ z%2IFkoX|r)Xd?ewXz|_<-$EX0qu%N^@-7LYbKB5xqvM`-F+>zsd4Hc%wKRy^m=PYW z%VG#;!Q+<5gr?Vm(6-TnQB36LZV{x1*A5N5c1Y<7Qfb~BTlg;`n9k49*>@H79P9mk zi|R)#1o1(`j?;0``WyUW(ZVeU!dh32#p4UsjL+rvXm3vBlHMiNG1Y$MvnV^`LL$mEzXQ z9_ffUw|p2u&cmJxtZaJcQS_WNwUy=?yoY!&&%}7mlDB0h4BiG@3r?DYC#0>x6XK>- zz7u+WUvn-eT_MX&EU<;x%Fg@ycbn*}BcBhMvkctmJ-Sth_2p8cXjDU{>fEKW36XSJ zdAqSOtWAX69oT2Zy}1|gzE^qoaQPk#5>^LxNV@l`;=$`YKX@(ZLz=@d@kZYJUIB^Y ze8M{Lpnsidjfrm^xW?NoKwTFJT_L-`U$?+{#GVrobWO1B@jg|;)NcHG+fy3y3Xl7R zIAu7VU1P1!C?Cu^Yxxj-eyDbzK%t!@1Qsrp!q)GM!4N-SbhYQ$8mm=7;|V(I=o*K;SqkLB4LiC@rRqSfZv;LD& z%<{v;4eQQ@dG>rT$KOa|u`9nm7GWV@Q3*F%xbZu_?mS@Q$9)t!p^nAE$H>L7r-%7l zt!flX_i^Z@BHk0gMyB!x!aW7}7XcW`E8hh_lC9K=UH&DyqP#&kVVJDC<;qVY;is?` zQJ7HPL}g!hel5##j4F9VoOUlmdnPAJKHfkz9Hq^S}6=3#f@#W6Jl_Q z=?-b{c=CXUjbB&r@FFhZCB?fR@%$1TB((92>5rruTlXf@1ZDMQ{v2ws@@X<6-(ia> zhm**>81|oR%%>Q(dV*q}wM|voo}Lzn$l&69zqsPvpt!~l1&B8S5~`U_e_kC-zYc`9 zQqUZvPo$ePN18IgCS)v*i8~B`t;*NUa0g+U<`K^kAZ>}S`#c+zbklu7<;7Q= z3FqtJ(z^Q_5f&3gbuOcy!`$D(IwhJ~cYg?Vy;kk{Dbqym% z@-;=|u|fpezzhQmfZ=ViP0fp4mCaI;&gdpgX+C&~x|?nv$ZDy!Wk8HOKSYAWMo1A4 z78<4D6vmy;Hq!}AF@x|vZESz5d<@J8GUBx+L&a_d+ILvYB4Zu)))yq)q{ThD0B+Ir2C zY#@ThL~vhWRU$v3Xq6nHk9~ccD*YC!ZQeTbb)G$ncSovr^d(SN-LI?Ye?yc7%l-bR zDo48FE?ATi_eN|$856RMN&k9XO$vav+Rj5dy0%eFDf>pr_do8YG8#PFtTin5DJ+8I z3w~@vvQ}k$~!M!mkP^k^830P+`YdC;a>t7-^qqG@3U?E zi=zyI&!-;TH`uP>4cayoid4>A6AB$!31zL&KMOURzTf4$h>ym;I-@kv`8|&aNZ;UJ z_f2SwdFL&Lzs_*{x^JVX@}1*ZinuGO?jPu9Nf1y;%YBCf z!dE79=fsFzewQton){wAubEK0N&nQ@B3PKBx_<;5vIE=TaLp(0Wox2_xfEkosytQR z*Q@m)UKL9+L-t31ji1`zS7=Rew`&~cqMg+c(!0-BSCxbg3JJYt_Z)}F4>(45` zyphGgb*UfmCPe%Y5dmU&?`3}A%?SJmftUGkryHgzbESEMc%} z@eNjS)%~XGKiFmoPceeM=zg>9uXc~X#h|sX*hsrwp5(^mtVhJl)6gh1+UY$bSdR!s z#iTzfI@?wo8>>VKpU6#G8o#Av<6*c&zcC$6@K;cc25M(89ys|FqMkK`l*J>*Ogx5E zO~`C2lXCt>j+I%x{h(}AAeN3ZE4TS()5YEGG~eCJQXK+1Yg#1M`P%a?Z{4zw#S+Ln1K5aWH_k!4SSHdT*!*q zR_NaKW!{~Y0^lKg8H(rZZE^RJEQQUb2x3=?;`MJEXbpJZK1d-WOn!re!Mj^L&oYP# zJIKGbfXS638GTJeymGo18!+bFjECz&{O66FS3PEm@hTaNR~LwO`IRE>aWx}i%=wWV zm$0W~8T}2eIpdFa*0#i4yas=!u$%JzKjCoIMsj80(4P6H_X0LSqxU zdqqz(V-`O%NJG70MTLeYZ$(;HeJfHSxCj5F^D6HjgI_jc`N=&Qv|l2=uC8Ir@8pc? zL{WpZ9x7)-<9m=rIZfBla3{PO;S zhCNt+-II;MCC9s9yO5<#lSVdyWw==lq<<~Yvv8vZUj=P@_il%^ynR@s!{V+y1BUn4 zuR-|lw;On!P<5NRzvXiwGujFGIT1~-iTzhuvHyxl@Q_lowd&0VQB!7Yf~gwr!-`O& zM5!@m4>-5O0HUw0h4AN4z;L~ z;}_wR<-r;&OM`g%D@PtTuL+TW%ZlS(W(WT<^dT&8sHdA^#v5L7t$IBEYLm}tblgj& zo|y1*JNWiZ-OP1Rl@&g$u{dh7r+u#QR{HJ|WyaYRyDH`kKR|mNyMzCvsd(!#uWz(k zqGyhdh$od`F4x6tlm_2{(4;x7n*U}Do6t39Gw9u_=3J}tGa=XDV>nmiWAaDzYrIo( zE#EVP2=aByeO2cNJb{uI$L(Y=BP7l6H7{+Nf0n4z`@;?)39qq)4=p)braM%_u4>WV zET`~B!w-3H%lBE$k~uB#W-X{m$_OVVmK_pC$6O_%VB;T86DTsm^vhv3xSUSQJG7!Nrzk`|(79TT;x$IF z&{b^GziC1JL!4rjrg=vi)rV;ynKzo;-nKjX!@rl>nfxPm4*cVH#^hDF=OAoHKTMXQ z^AI(yhjUJPd+l8Ha;xP(&8c~}?<{jp#k>!84vgV@Y-2RQ$n`*o*CxhS;4|S;rlw-1%E& zGw8x~mfn%U{Fx@&m{N;%I6Ri~6P}-$t#2^h}z4S^Y*= zV7rB3G*3Dz$l7V;v$2;+vMAEv*1OTy5`G3Pp&eQRKn!6G0VQYgAAsVgKTa(0zyD@Sb%hFvN?eEN``X=U6 zeMRqNE(_|Lc7FU#lUg z6^;`c`O5yVFIB5I{*zjXI&Gok_o&qA#LIpCR>Rwexbw+Y*_zhF-A~-FZFuMGMhuSG zyy0D3ab6WTd$^kmv2-OBc4Z#1+c(NbuQ+nTt}Dv!8gKcEa^Tu^#j=A| zc%_ab%gbHwh?NJHI`&-Ql~=l}=4>`$68Sik@b9q36HPRhXkv`sXl$6gwbnT>V{-3(_r3Rj|M&lYJ}-nX z`?vPmYp-3-J_lijwf&1by;7Vq`-9|ROLsqe`pHSvr@F8EP5JEW!x8++q2J#T4$CfE zwv95k8}!l{k2adVojx2?7g%87)?=Q-*63H(IrVNd4C>#fmrcsc(I2O7^#3ERYPNZP z&)@A!0#3eNhFv|E=(Vp*f{96jvO9d80bkd^*WciCH<#ak5)NC2ec}^r~$@H z2ghMh8pnFGsVoCZg)PnKZ$+3k8vxa1mwMBL;Ha_7Y;aA2ucgok2Qd(mz*+eW zT%G&DBqysivO$!<56~oZC^$BEfa_t5*}PwHZAzhp)8E{?A6z#`bQMhj$|>g3Oc^ha=9HUrxC;&an#F%NTRk-}I{7+^h9T!s z63vZ_J;{v|DeYoq`~Cz?dG~(##U(|hd0F`-=_PQs>J7#E^xPsiddu_$85yNTMTY!r zUwuY;ettoTz9_4Up~c^i_lj*cPtGbT(Hs5}3jQxPlw|2ka?(pMF1i|hvNHX6Xmq|l ztEi};Na-spQ=eIiJ?gXaCmV_i^3hSBm!5AZEX}2$5&G!?GkI5~gq2k`00CNbh%Ndo~a*NoK>VxEGigp$jx%o7Zg(a z;w+dZ-oc?RF?vaXK3%SX-0})C4dct8RY_J+eik+#Ur>}MPfL=Vcd(imjto-zGxww^Fak!J^2L#NjdBYW#78Vv1(Qb?Sk7I$&RGOPfZD5th7nDLqm?z|u zm!6Sh$j|cQ9ip3;%(#)TpVHi1KkgT;$47~R(h}oto{|H*L0?>wUQ~j+y16lJwEvO* z1%-uw^FP38OVTzi&VmMpk}^G{3=cf8mx`2a-Lj){(kEx>)Adup4X0FJij7S#L%3pK zsS|Uv(u;9QCPKgRqC>Od;(`oAI?VD5OHNl0uKWM_RYDt}Wj{7wW3Xm;H581)ook%( zDd}>`>G}jiMo~d=!T1utVOit+qBHXh`FP#P7k?65Wq!OroH748DHuY&KDQu08&ZPp zh_i@$5YE7oVtsK=X-Q_mlzf_VeXb$T0GHcbj=M}b4CySu)W>CIq{D3ey%%|gm5rF5 zn_DnNzR1R9y?74l^>OJX>97HFb77p=9JVK2zf%mkxzrky)feWb!(qX@B^5wQbcR6p zxKWDXRDq?SZgB17J|H`|UZ6`QnjaqsbAe(1mMJZENm*f*-V<{6q8T=xI&@(+Pdcnk zL3X}j8m`VZd5isTv6H$er|@_K)c?nQlL=Qdi%IGqLoeBof5yfp<2M~$1G)y{4|tdw z-wTu7Sq#tV@Qgcr31j=#LOH1fZ(hap812E?-XyRMO=68xIK5}9d!M2G@caGipfh`d zj>#<;r+ljck9O9>{@mXIYuFi}j{U6t8u*mh*}Rpxjs=)wxi?V5Mwp{d7L|+4vDF*q^T6jFvV1|7$L5#K zHSDEUmaW>bL9N1DX;?-pv=p?$+BL1pz+MmbR_s74?ESG*rPiJu)9=*7w74QW0X6KZ zEBY6>VcTtPo7^<)eWIs(J9iBWCg!;h0xod3Y-P{BcE`5g6Ad2yJv6M+1KT$GW1Oi0 zSe_5mvE2bUqGJKAz+%&Nkh?w0>3Z3`J#!0DhiKSOA?RNoid-0qqgxmHwYEKb60Qzu z&zvIA=R|j`y-2(ig^~Njc*bbh);P>c>U}>>!@Bl%?yX^O4M3m%@ntX%sX%)+H9jxi zp0!Q*GhV~)4zvWj{UG$2oRpQMW3MFPOdd=clCekMp@ZC=+1z21hH2Q? zQRx5CDC{vh9hpo#mANxh!)|9{*(&Qfls$>j#8hG_aRsq4Ygd+r-6Q^)wNszXZO7x@ zh#BuTUc<%_cZ|orKBe+?DnA;J@mpsj+Y!5Dw)b191yb!}c0*=FKPkZm?(0 z6ENn>6ENl?vW(B|lM6dG4=u~`Fy@=YV|kcohkRr}K3Zb(adcDi@rw8?|ATxD8(oO| zY6tOC;*~=5yg@XdgcfIFze&GCCbK8u=)RbQJ-$=2sRVXNX*<|gcT4+w*t2evF^88Y zXC-M^?qs}z-kgj(@F38h{XY4-$uOT&cIsbZ1Ez#dv1e&hFizzZ%&>L}_VPaQDDfik zC*pIW!&J}i$SEo|mA+zC}s_Gb5|9i9d&GQCo}o%NoMKex-AjBD;890gXr97&jwUs?G)g*64u(Yi&c2N->SkLo3s!)Y9aPDb0Mzsa^mY``Gk0m zc$xUaLcD@37vb7%ScLoh*rGq-4EX`rhV@+>4kzlI#dy-Hmf)`QUxFvhfF<3Q*t3bm zBH~P-hSe{@9sBkYyha+xa%jo(Ondh263npGQk)a(rP#0A(n0Pzmar6eY5Gz+`Iq9p zty+pF=TY*ET!xtsUWRKrhqw|L!S*aG1D*!z*o|e_s_pWJ%XBQ0xL`R(cy&4L>T0|? zt`VPB!8y!aiSxf{C64#2m00`zD$Gi~`qnBq*@!W#(K3w6sZ<`f8e`V2snj~N zwrlaU3|osC#;)B|(){B?BxmLLZ#2vw?)S|qffW9RE~=5F1bm>HLaHNtpjt}G13pmI zlJbEMR69up!Uw8Dq{83>)%T=&!Uw7cq~hQMl?6xDA3jjIlS+gSR9#7>zz3?qq|)F6 zRS~Itde=s4wj7i>{gZ_)w`N;7{&kxYcv8Tpl=sMU3Ml-SNc?A78@8BjU=>jJIX}(S ztOk?{)MNY^G+Tkcg#t=Q9VIneg}(yK#nO8GEA0FTsgsKOg7Ul$sud}0_Xw04)HzaWv0e&y45PYnii!qxg=O+nq>`yFho7S{q^ofZ z6Z!X4H=XJx@~f1~ay4dF$nR3!s}!Y>|C4iAhwY#S!=8Og>JTUuFXDfYx~M2gLiIZ+ zOHdk89W?WW7E~)zff~6^M=C*4wxn_tPX|)-73D-~gQ8qXy`z!)dx_LBrOt=c4W-VX z)N@63C1qzOdxnwfqNwf?uF=b8!_Cw%zFzpy&(@pa9xUQfq}~D*59(zJ*R}!F2sVZH zC-o_)WHyx#l5kHP0cFFc^AXgpk)q5})MZi?d_493Pf~OFL{d$pDtSJ6nrZQRsNz%P zthHFTkk2C38B`%(%;%Dd1XaS9@+!(DmOPj9r4(fdMOnpHkmqQs+st=Soq^Qr{1ZvQ z*r!dvJ+X~{Me3V;R3Gy5q%4b29p>MYswQ=WUnRA_1l1}26RDaqRNwQ5q%O=tb%j47 zWmSRd4(9^Z2vT=JpsFQxkE=-SoP+8&ZbqtOC8~$qoRs$hROXT`sUxIpBqvf^t57*g zok(dHqG~U7CiT{0R2?KQQU{l#>L|f?YoM~KQ8`OpOmfjnT}f?Qfyz}1A+=>SokUWY zux0PI3T39WVP{(P1b#=nNxVaRNPJGTus}KzeTd=2{=_lF65>MQ2I70f!^DfkyF_k@ zbRhZ>V~Hum3Bcyu^j2u;N{k^6B90~ITNypuTcgFB7)p#HCJ;wh8$Iulh1(!?L`Pz0 z8>7#gWZ6SJN<2%vYT}dG1}*c5uMs~XeoK7Z#^|ZBLyIf18!>^HWoPv9Xp5F;;z;5o z;^MYOpA>tVXW}yA8^rzgMxPZ9XxU2qn0TCc*}>>Ds~xQraV@c)_!04Q;@8BR#Aoe{ zZSOjwMYKm+5jzt7h~dOU;%H(Cv68r!SWo<*y)kAxC$xAF!-;XkVL-udx~zlq|DP_e z0w1|-_wBYr~sj`)Dsx-;@6VozcMF^yPC+(i5g*gPjc zbpFjerThU=<%x74dJ@BleTl<}nZ#Md6~uaC1MvXy9Pwx3pTOq69K8HmrIdFeMiWzr z2I4GY4RI^+6XI#&HR5w%Qn}t6XUxz0RbVgTNMbQ@9q}{bH$?7(^d|Npjw6;4Hxo}0 zZxWd=vK=vi_%gA8xP-WcxR3ZX@i$_dE=Yf3A~BaZpSYQLocJ5j+7B5UwR7Kn5v`U7p*@gOsJ2>l_b4jvdD z0R=1Tdc{((3Sdh4qONtYI&Tq=6K@jDf{`J_4C3NojDY~D>MWx{|LEa$=TZ> z2|CUWh719oBR&Wj2GoX*13H9e>ypcNht}~>_C@GMXjRp%l@(_@x|xZ=<>SKZxQZ2r zCxB&1c#4%P+Xxm{wu5*q9R1IQr-S`_C^zq@x4YlAN-6&c*lc;;-OW0sTpfwj0ipLE zIQDiu%xpOG>tSot+;2(`Uz_GuOL`>Pz}_RiLflT=O*}$8K|Bi_Tz|Ar*cEIJlw3=j3g75s_#s2`rU-u;K$a~9QqG;l}%1;8`?-vD0ikJTr9^2~Umpdet?~KQs4--!jFA{IW;|%B%njBKf`y^n$!xHd(zK~$nay~yvc-Stb z{12cFQw@9yv?MwMIU6+y=Ph%Pza#9lLD*w-A~KaYIT7P8r}F8t_B{DtBR(s@95jU(tw$=(M##iMw-F`Db1@-eX?PteY55GoKM?h@0f#W@845|k1B~KIUK3P2p20clc$xKiDuqV9}Uyb8wm`Z zhqW)y!`uc_IhQz>DCbsRirH?Rcg*X*8+G3WIL71!&wc*A|5Nh6vjF*k{Qm%d=xf|^ z2Mv2IQ|>)DSi>sD^#J;h#uIx@b&p_I_ICB$Fb#WS4Eog4ntqT`$4}|;-_>f`?P(Rk zIJ^0RYI;H4qF;Sn!)92XC;a{ z2FiiWSJX{V?btd+sjOm{Biqr*IM?l&;U&3lHq^Ce(-pM=R0p3P@R~{)7ZmHY>TH{7i<#)YPX^Wf$Ge@P}F!(p6s%sri1cgzba}aC~v0nGRE{_ zTfF4DyHMxDb}P!fO$_s8UnoisstdcUs1Q(o>{mr4fbyrmS<@UdfbI8|>l|!jK%G@o z45&bMLs14$LF|#DmVxTZ%zb3F6I3wkps35BLRf&0v4>E0R;im|7X#{sqUu0}u}6wJ z0IC}^_m$OEP~ohDqD0#m2ATRAV|Hg}mAZPU>&|W{>I+bj?2)4Gg6hG{yD0nGK8E#V z9Te3SR4*3L#TYY+omJ|-g}NwqLs7yZhDEbSis}q12LFNpseYhhSqDYsgNkDTe#V%+ z*;%FTSE%dFZYavCT?~7fJyMhps6NcxUskS&X zzF?oSqon4xd+v0e9cGQPVxr?Ec7)vtlU4hUKe8`aL%6JhJ3e7wGvDsAO6aKOmswS$ zta3Zr@N2BLhpehPI`La9r zI9YXY9>mT0jNY>93QEV{eOc+xX?6&XC3)Jpc5Ymms~RitXz3D<5Si{De!dDjS*#dnOB)pOTK zsJo>oXE%3|&GGGQPzAc#iwWF24b^k=7X;I1dD(ZdrZ^V3lLGe85enV98MuS{;&;7nw%snQ^s+C6!Tgsy*C^P8s zOf2JD6;;oK{OA;8yKVf`6uE~F{q+{xxaU+FyY{(%pv9ZKYN}l45`gNK zQWr&Pc$qQEo7}Fs>*5d%)16HvOLXCD9RVqS#CewI4|e8GpV^W6X$sFbh$sbuB$A+<|WhR zc79!7v;3AfwbZ?1`5jN2K~Y$2*FBb3`94w=Y-HDcmOt>lGv#(8yB@W?&il+#c4Sw3 z@gq-dQ5P(4^Ru&z>;5zUc2;vP`z(LvKhKhTIPc1Izi@gx2I%2~V1vc4yjoF>pziU? za#>vkb)Rog)I(7JJZx&TBEa)a;uGX)>28eyn8N(b^|qCQGbwHLh1;24MWdmit0wHT2X_-N-eCVRdPEv zI_y1N8|hGs`Uq59jhtsDC|fC>)O_uHSCkNgsDoB*yIt2Al}oo@Oq8!l-I3NkyFD~f zN!<(l*ppx%L9i-v@ai4hB|T&2jhvdRYK zCIzgM)uM=HR_;<7sUr+m%tKnI)NP7*#mYl!d_`6}BVM<9NouH*)!B%5tU62IE9y$b zJ}WQjmZCJ>kAdo2FDtk1)2zIu+e0Gt_ z-;guIo#iJbZNa_|;%fR!cNFy}so*!|-sf~bYvnK1ZkJU}_sdp+((oO! zs)M>9>B`%*wykj8gQXqs$O_jzSo%OwzErpO9XS`=OTo16g07CcR?X@NKMW%ZZBajV ze_$2XqJHbnts`D&*WIMuG^-va?X=cCP1?1!j+TPomG{!J?Rt!q({)-OwkNYyaU$iCKnCExdGCTQ37m(obhW#N&7t@}$(@5^dP`wA2+@CrC|-s)lxhB<%;yYOZynbWc%u^$(G>4YK-2c$?AAytVox3?ULu^LgX*j=~Db|s-x3poRq96JZ;8FqZNfaBtx2@DBP_X(iBDA zjeKgIAAyw^`_gQog7n@9}@5iWa^0FRbpi&i8-lLbzc&V6_e9~r1(_1`y z+hj}2TRanN4AL7Wo)e^ZNv+W?={eJOf~49bt6EaS71hu)&|-qLPgd;9o)u6RyjQOK zmFl)Cs&y|^jk02Xy%vCH{3r5$=?iM2v{zAvUdwEArRq;*Ro-irZNAj)Gg+LREg6jcRvQ>331wGry3NNk@Rr6KBo?Nq5zR@$GUPTQ7AR~6Mn z3d`kejsBD9nJsFi{#0};JEOW3ZDlvDMcsZm-ns0QJCT#6`5-D>WXJqb!RX+V(T4%OPsVH^rs3-6wTxQ8{f7 zND~jqo*%~*w>>P)Xi?>Dk4T<}o7J+mN2P8p>K|>7NqL9m-FhVMt+roC^GL~05GSOi zhnr^t)jCouwS#&eYAky&FQq0$tsvFrh^#h~@>JAk zq6DpgTUq>2>Px(})bRojle(g)*GTXL=XImhozzW!y#Ge~MrqK==Kf;Ed1;uew5|g_u|F@3B~_sf z8Spu%Y(@26KtBp zO_LLBzQb+F>8x>$ev(qo8dv%!Y4q9VJXbpWB$bm|$vVZaclcS-HqtI&-Qzbo+>tIc z8h61j(y4RCU2s>*Id7c#yHd${<6PgBX0#}S#a(G$i+aQ1S7|vZJPY1(xG$|YY4@8{ zZ_@5J>5NIc2ht^zcE3wEP1-${?wPcEEIEH|Z1+U+{My*=nH2Q3vE6ei;%j5O=TfXm zyFa7^lXgrDGifJ@u_o;#VK8YYM6pRbwU}wr&P>cRX=f&uwWyCAwBjEoQOv~_lPDJA zJ(DP{#cq=*t;GS8b~OhSX^@=()(9tndTvycB&~Cg4zA5MOc%ZAJLEKT4^B^zB38Lgj zS@{lv@14YnALVxU6HxWNWz2Jeup}j)^AkiOsS2eoqeU5@-BP)owrEhW<3zFgmb{lL z2StF|PUdt{@o_M6FYv7qD*lk(e zhq`>BRn#9)moID-Ws$g56bMH}IV9HG76>;*xhFo<6$)=f1tl6R3Pso3#@;81NLjH< ziSdq;M7g4VOf0pSEnZX915g#>kfOXoOD*P#o44gF;E%)-$9cm1Cs{cTp5s_0e103mA2d9hq^_gyP~288!Q%yI7Rh`y2T=1QKO)4u^4I+Wr-NA)V&X$OGK8U4uIzp zk*}yTgR2~uiph%lZSYD^vrVEb6AP5Osv!-I%fxa;Z65L&sCA0^bjTNu%SElCP7FB@ zYMV)vYSHkMyzaY_B3QLZ`B_$#mpCaV4^E1c_kvF|r|U*{(`c6dWLJut4y7IEu$IhT3K-*$LY zG(M8mKazj!@V2OaEUSIV7EU`w&J$UkPrlJ^k4StftLw?_o%V{Yin^cd=Jcs(RFuU~ zZ>N32>6xq?hu&y+Ktw7kdT5Z-LGd}M3O0IZq|;$>N>LMs#yTAlCz@n6b7;KNF%k7# zR_livEKZ1BirNF}OQHWmR%eGMIejHk6?K(Vp`spu=T}1ir>rbehC7`Ux%4W<3N}Az zoYPscm&?i}Wsc){@j#MQx0G0M0q(K9WsNR~W6Jv7TK-Px1=0VXvKm?QIP9VrqNpu3 z_T9b_#fo}X6VvUIC|6Y96@}d{i$-PUAFgnV_+D5mv-{!7?GaZ*l%lLwZIAdte8A;* zdi!?uo87OAFgX`(a>_)f8={w@3Q{J4>Z_h-s6V7Evgl@YS;m%pGAYB zwhlYybVoc;%k#Ns*h#0m;(|t2M?w86c93xT<5>$q|-e(UF9e-Yg$L%7ez{4 zBdnW30jhQ_Y2Xp1jZWhOiCgGH4?7c}8<{5i$5>xYxy*G)R0%Pys zSzzoPJPVAyHwk^AvG*p?rO?=WlZY>rd!JSc-{*)NMXe@Psi=2J)m9ki?77$~E4H(& zXQ$`l-Ia2GcW2dj{UKDVj9LF7ELRz`{zIHtE$1?Lb{%*&t~O@>5>aopJ0MRcf7a>>AbdI^(LCsn#m0VIHb=uNl|DOm*iqV=iW@ z2d^1(F;g{cHm-x2YVT%aE@rAjn~k}csZ{mGT+CFK^~PMxR6fejz|t1P3azSoi?MgD z>iQOA?^@NJEymups(o9Hy=zrRw;Frbs!nY+_O4Y~Z!`9;Rkhn@>|Lu0+a~wksw!5P ztMsqPmWyLxy{D*%l)zLG?It$e)S+RYK57=6$-Zpvi zuvG0-o;A)d-x_ME^1R<%x6!S&s;8{9uUAiSu~NOPsJ+#vT&+}zq>iw&*$;JAss=@s z_1NTNrD{@Cd5^8aS{3t8V}I7FQO(aNHMhg8RZo61*4e1|1G(;#6}!T1RO`6${?JBM zD=W5V_0~{)Cm+rlhyDNj-;bAu;X5|{I1K;2?jcacq~U09J)His+;Fse4@Y~q;rL44 ze#7zIKQf2o`!LM`YT4%D_`XXAhvWM#T^){p>*EL*_Fx>BhkOlNc2w~iTTL2wk@sxRknZ6>i=r*|2h67@|;Y$m5(%9 zs>o7J*-oZxUmc07vtuN#4ti?Y$0PsKd>*9QuPEACiguo&eN55hzOGU29ja}jTC-7D z+h!E@)o~Q|Ot>LBea++CK+?vmr!(ug|JhS(e47K{6THT?T_f2XaQLU-PjP`@Pdu59&St4kM z^r8KeO1sh2$F?QTzaQPd%m4p*hW}0Plc?2X8b$fYzuK$FUQMH$Orv|1uC*O>t)aiU za>e~OEAxSiG zDx*axmKo$TmpG4V-9%E9LBa9zy%;ZrJT@j=IbtbaszsqF&=)Y#Ng!)=G+IXjv%RdCsl^%rU zmE_Zb#<-RuZyNnqyKLD?mbWMed8Ixi`+l+?|4Ui0MzY)_%Uvq}PUWXmF6)Zrimq7x zgY5EH{v9pG7*7woF_@?47-Oyf=oeSyzggKASMa}C>(DWO&C2vj??tt}i7Axr7%Gn^ zT9dzgYRN1hpV?!KmU&cOX3}ac`Mg2p_lX~wl#iS6ObaD;!Nl@CS>#r?{}$nWlir_F z`8oOP=(>|>YOx|J6WV{zW>$=>B}o^s@;|HdjWwQZiL|et|D`OLSsGgGh#k_5@ja;Qm-g3wyOAZ9*gFm53{As0nPe#>OYbzi zn@mo_lW-ywWCcKwe& z-J5;%jQ-(Uj>|oMkYRk*GA;X?JcI2edu_|JQ1e*+o1A5uM*E*R3e!9fXZ)wJWDY{hxeUzb z26_HYp3i8#uvSHxsHtBK)B0p}vN$ z!P*gPjFx|A|K~&_Z(NEV^QjG4oY(a87FH;9R{i$5?9`LFSiL#%S_=_U|*M z+*NB#b9QDW%$c=?Pe=Id2%oO-sew-~<^pvd@Y#ulFhAJe{;Un_!R%RYHk7>#pMBu7 zFMRfc&;IZ^06yd4b2zlkU~cgF3(sIL!Pl$s)r)1aAo%=+XR=WEdKJEUvGHsmeE!16 zvmx;HDtz@~*xp&5ZN&G8 zyMdRTjsdSbU6kP!EUyCd~L_wY}5F9vTyBp zTl!%9R&ihYa{Nr&C(_U3-=Rm5cvbiOSmK-o)-$hH?= z9DDTQW3mkvUVI|ZmCx%x)Y+AnWygxa41XsJ{l`$NOtP06UH-Q-wwhC81VZuY*F&c|G!`Z+bK6Htr_!q@-L!(PP^|D`F2!r(%7YuvsZqvM7 z6|(=NypvA1r5SmTTy9I1c}>Jju&>OM^jBe?&4KIlwu1lWJe~dtwW<*N^4#_Jsb8+T zkateURoC(!>Ygz9H*W9c1?X=}X8B$9j>0N`mvB^Jt7P_i{sf5sR(>5%WjME9s^j@H z^_-v1->lE1oO3B#&hanf#OQRMBmfqJP|a;q*`@0QH)C$XGw^w{ne$UiH^IsClzD>q!J zb8ZV&=SmZF3spY=10e@1_h`BnqQ$dP+@;S-9o*}fG}#&0YVt!}9kT}>qq#jMI!(sa z?*d#8qwsJ)Cd$Wmaj#PioV?zB2TPuOPPYSk-)p-Aa)$k*N}s&NeUcbIIfnHUGbZnL z-=u#<(YJ^I1vVeetCPMhTA@r3113h=lO_C#R*q!AvD zqSe$G##Okcx23Wkg&wyhJMZkP)GqhV(@P|OAvFm{?62& zJiOG`r{41jS6??g0?X*3u_9dUUZ(4`m!*_VaM{aN#&_&ASUtIHt4LQj=XuiUP|F?| z)TxZGj5l;jS067kSfs0e0D7s#v{{`DYX51KohGR_#xH_$^t75zWomj25sj!qjdR-w z`^T~KCE7oYG_D%5yNcJQ#jxvCdxvUqPI`7e0r~8;y~FS{xI|p9R!@Jq^Llk+`vINn zC_d*eO@Fg9=bPdld2o)WO$F~d{h{szMSDQe9#GpRmNflwXD?Oibd_flE1BLFh&k+5 ze>T0h=YBO_xfT2jv{mtI(+}9H_{R95p2w({W9mPq!<~f(&q(#WsFu&ekuwaQDwvIp zZv9jfXY}^$r;;N~ol)$W&Z=kZv8&;mXOw{toih|?AwMu!^GZuZ2J z#9;A6oi}rv=M(kRnMqCyS;fqEJQvb#M1JIXU;Sw2K2I-|de#@7b{wxkCywKC)Hu!h z6+Fv&JOl>JddG7T&2|m-lRwTO3DwB-ta$9!d5{ve)svS!rIbnzggW1Gmn4sJqHPoOP@%u4ArO zJY|whnQY^WQoi>}Bg4DE4zf^FX6b0R&k85P=jk%qY0Y(w)c8X zP#dGVy6a5XE&2zuTOT38F^QH>iF~pt$m|u z4@W|_w!V8I+s?j+INnDNalF$-i+KyWgB`EIXn{{k(eTXB+#r9sb(18C~vBoK$L6LjEOGt|ZSU;K42`328~smMRHPAv*~@n>d!8sO&+{pDGE@ zB@gLTRf<;=m&-U(UkNi0rnZsfZz*BFz7mc)jv~i{=UBgF@I2)jN43dRn@aXfvS*S7 zpP(B2n&_-Rp7zU?@Cq$adck#^A>le!O1MT%46m;yIvHk2@>z=4S`D31O?34&(bac{ zt~f{jd({~KB@}ZN#Z*ajqDpeBu!RqGHLTCV&HfuCJag(LoX-ss&gTxwT&2tgX3{{J z?4?ZhO1N7ZCI2N_x46>H=yX+`&R=DFNW!OrLlQm}>{m}%*e$@79b7mxpu!BF z16|pd3-bc-xu`T?p_yaV9AL%FdBEpRivylWj#bqG>&<>%xDxni;rf6Rl*tJR-{ZGY zDdRi+o{+vI;_JUpNEt+Y*WX6U|Ad6^417YuSAd_8@D<}Hq$VokE7C8~%v`6Lxg#C# z|9wEC#24uT>&)nsrqyhszA9s6n`jl9O#mluj_4?+mf!S0^j90Rp2`wr;2}48Q<$TRp5IaH_{GF zrQS2?$+MB>Csp99Pcy~J#aPDIrNYWmxet}`8V3uU5~%`Ti<&F&b)TsMUm4mctzY~~ zS7-}6p^>iERDrKF%@jDI5*kq>jc$fg-VFXTXmlk)KF8?JDDX9?Cpex4SoU(r6m+%- ze0SDVfvc!G}e9~Wf#-8S0* zWv-=XFzw3ti(o&V{~cIxypCG>E}P=NN3ZsB)ym}?OAHpbrH4!KZc;IG3ww`gmfD7R zL2W>Y9mBhAI^A;vwe6PPXy+<*TbdA(uIasWrE@ez=tq$UYbP%q7BT{6X-vpMzGmqf zPdoP7(%g_h_QBFT`~B*lmd*;yT!5H7u(nx8)?S@uMLIb4_ zm#+_nX8?GrSw-u(LCDYEuGK$;rgD5rKf!PhT-B_MZyy#e;rHzQpzH=^&uZ_mRF2Q^ z(UN~PJejNdRQrcTONmephv%i<;Dh(L{m@rUSiQh^^sN{8j=uQ4*!Hjn(Yod!u&l?I zVSA~(m&y&IyvG%vy~INTpCJzk{4Lu<0)O-N1ZCK$1{q;VKo{PcYou3;FjePKAd{_$*iUVHt9A)5UbqUs^IZhI zuf;g7{Pk74B3$_%;=KOnbgul&s;wei%9v2!@rm~Os*4epsfgH<|~BMk@UN(X_3(l@{o={|6(#MC-AL+S@Cmnwmk(l%g~bPBjc zx(%$BA~agIN~+N4*g9!GaD((JuvU5(ST7w0Zk4_P?vTRFbnIQ}6<~w38@Nll1l%hL zt&Z)Jl7WY$J;0;Var}FN(r>_1lFnSm8l`C91!)HGlJpMniu9GamffP!-J#LlqtQK} z(LILIX;~9wrDaS!0#B7_0%`?srDc{v1GE+vKs#X#Y$w_RokV+}Ubp}~ga^=5cmV?h z&7q(<6f}o|=1^cSaRPhkOTENXFNxGkGW9Z?dP${T(jbC4%M?Ma%vp{I1LlfIV4;Wx zmWY>uQ^f$_43P*d7ej%SVkEFij0G+cnZRmc0Im}Gz;&V+xIs(>){2?HdNBvMRV)DR z5KDmXiW*>pSOeT8UIp$IwZMJib>JcKCh(|u2Y5m>08feCz((;Y@Par9yd;hSuZS;! z*Tos&E%7z*j<^K8C$0h?h?~I2;%8u!xCdmahd`C;DNw8Wvz3muQ!Ta7F(*|cP_Htx z)G-fLFwj#q6d0wt4vbT|w$`z}sv*F5RUR-=wF{W6Itd)Ex(Q5GJp^W|9CfgJRgu6d z)jHrhRj`$o?N#A=?Ni};9i{RKDxXr}+T9_`J+eF?%VQPo78R}<6{l&YY#H2f!XkQ`1gR4+Z9^Im}G8`iHhUwo2XE9&%QnbAX)H-vCdkzXvv|uLCcr zZ#%%wSMzpo0;mVJgHfn)EDs=>jzwxL+ru1cvf67|f@T0%5;bR`JXoW)gW1zOfZE|2 zLkE~W%^YBwW^D&8OV?n8Eb!^fMmZ)5KQ@ug4)SB8SZ)tLHl1w-7PD7??rdwMAM;^X zfZf?mU@YTcAHaG6li0`}o5g0xOKec1h)!aZP_t6FTfqtin5Gn?5#+lWHb!8%cF zCdQh5pzaV9Yxb=TmN&yS65HxqJ5|WGRzCKL;u!HZ(cA**Zs88}qH-*i`%&3IoJ*F4 zRNhSGZB#x;${Ci}`&{B?;z8myqG*kDC&m&ph;xaXi3f?-h(bsH z#8_emaV~K)@gVUUQCK1Ow?SSda$DpTdn9u}>WTZ>ZHHOCLS&9eJu!;N^ypLTN}j|k zMCOL9@IclPd1s_6k$aQB59L6-LcH!{0q0qiFP7tcv7AO_k1kl&`(rtZ7)?CnkM{Hc z>Wf%MtPeo@ekxxjUMGudAhjjN1yWloR}kxn`-z8wur|6YmeYw9#5&@B;#DFKrg0IY zh|$C}Vmh&cc$LUQsQ2y|zn-{1RyeE+yGqRLhn7m>m3}mn{V7@kvYfb&c!kIY(n=Ad zh-t)fVl8psAo3@&MDi!55zC3S#C=3In0$y)#5CfSp;VhfwZtf58nK*MOWa4iLS)0p zpBP0Yo=LS$pfpO{9hCGI2Y)2WtNPOK$fA+mAQidatEN4!GR zXHZ*WIkA>_g~&3gmY7DY%_94FYDeFwd_ zK3u<5e?@;&|BHT{>npC2ZY$m1a69UD$?Z3{CvKtc1Krczm$~n7f8YH#ca=w&N1De( zk1CHhJ+6B^_weXc*lBGi);YQJd!0{qKHu5ZbGGL*PdBfgUX#5pdWCpLc=z!h?VaJh z(Yw(*$Y&!T>$A_N(dVX*nQyFbx^K1bTfV1#ZM%eYSg2-i&t0Ol>+B43an8fr<#X2(!=E-bX7v{hM zSqByb)=<`og)uMI4ep2$%opy6FSAJ2m-S@*Sri+@hOohGC~z3u8HclEHUiX0mcmkj zqk&`KBb}wO3^tBs!pC^{$Ywdrz$UPKmdgr&h44|z@NKg1xa|;(4GIXcU@VUq98?Y4 zVlc5F2rcu8Yl%CEdx@vJq0e1n>+m*KjOoKW0E5F_fDz%Iz*s5|4i9MI-)rTz!6u%C zJpyeQtM657%UA>PP%rH9BJnq(cl0%|heTtKeTXBX?|>znI3@O^9b@IO=YY$oyq3z= zaaL^^bBb#VJQat1NxjcQ`9Pmbz~g;zESHHt5v9IJC!#MghB%lwjyRb(pSXs&f%q=* z2=OxU9?`5H(vIj$>`NR+oJm|wRQK<1-<;>p{>$xg-c|z-4;bXY*tr2CfY+#ee?SiK zj{!I*vcKH+z4))NHUVd>-yoz@M6@G}bP)P%Pegu5{4^1F!VxOh4o1FC96JO#amY4k z)iLRJU~m%uKd5^f__(gSK=j;^r5VZg*c!))-B__4*NvUnvSs-*Q4+?|$R4aOYa}}^ z$*NZ~SJJIVb0>3WY%8g$WVu^f=+Xdz*Wb2mvrCuux0I#(T4*Stgc2aI-EDqtmKF*$ zO9~VykFXRdkG}W*ALrbA?#IZ=7w^3|I`@2k{?GsXzs{Mrz=+QO^bR5Z?)=Yy`hE_e|Hk@z?~L=mW$DZNl>ZCw!TO`|y8rKs?>!DM@WCHBo)G_0w7~9p zmVRaX3nB^bi=rLe{{ed`A%0J61ox|A6S%)GI?-+p_E$oDU2H{5BI7o2+l=jKjceQv zJ24GzLToa+z`q&XgxG5A1ou{B7r3_>yTRRN?19wn;3mW&<1X;`f}0R0jeX$WYup3w zeZ~Q_KQazN>NL0s@eZRGT+`?Scg8ph@kMYG;*xP3+_G^J+y&!4v{W_j2e)cG2=1bh zg`AIpn-JFwpo7H^f}0TUHgag62yQ}LH%^1QV&uX7x5im;KWvPE`w?Rd+@Chip#_ss zfc*af+=TcUV+#Bq12-W)VO#+BGsZ=5f6@2>i2o&U6XLVRBj7%5OoRK&h6(QHj3T(d zVp!llW6Yr?reTBodE*kezh*4pDi{v9zivE=Yhk!(VPrJGea^T7?r$24;Qp5JIJm!U zTm$!ciF*&PvH8J z`v=C4gZq;4B)I?6_$hGz#P|@nFB|_Ba()xsg!ohABjEn6@$bO>U&d45o=W@&aK{oK zgFNHlCd9?W&w@Lj_yn#<;y;yIj$#BYK7wZ!uX$%)^^@g}|q?w=+8JGkFYya4XsB)$yp zKP6s7YqiAhfxDsQYY5vde}M4Z@`vDVZ~0?zcecC)?wu`v0&Y*sH^DvF@@H^fe7N;# zaDTe>bKrio^(k=wed{ye{!HuV!Tpb|W8i+g^;tMm{!8mWfcx{1vm|~2a+bu;wSEWO zPeaa<_(jNB5}$>fv*OoV_ZhR|Hz4P%_)W+;3q0sO5c4~ba~3$!F>wDIyUF!{1N1w18#L6z~EoEK9R72L;W0_X@3hjZQxUX9Af?+a@yh_ zA*U_=32Li|ZEaSfB5rB>9Qbc-dkWl4TM=U3()M}q?`RtX_l~w_;Y{4$_Tvdh?1h|; zxEpdh;%#kDKuizhbi^UZ>4?LSvnozNd{x{FIjg`KKLzdsP__#E@#n#R3UXG(AmrTn z{{8Pi`Tn8zPrU!)`%CZdz+c6Mv;LqM+iC9n+|FO$S?pfu{`u}-?7n5!z^=2qUfk7w z=czl#@BHZQcfa+PJ-I#YcWu6F_g(w%I(pZ)?)sa%&hD-5{iD5qx_9fo+xH#VH@I(j z-_pJx+V{0xZ zz-JG9@xWIPyma8N4*bIb(bL|urRPk~WY49Z%RS3IFZcXa&v$zM@1DhjO9wx3@KXn$ zKKPA;e|hk(Lr))i_R#Z(zI5oThyLu)w%&o>k=_fvU+w+k;eR~5p>Ipy?R~rZj`v;b zdr#kw^*z(~JAK(B`6JIBd*Rqq$N$Um&mDj9_=it?{KRKZtUr0r$$^uVlb26^{^VCq zX77FEUhCfL_x|v`zj9w!|K0tg{aK^E<(aG@gt5NmOZ45?^7U*2zMES9JPU`B(b@9d zEIxy;L_abpS#mSCnz8jP;sl~OWTaQM|K6)Wq_M#olcZ`0?M2&*$`^00>vj5k+IA3&Z z!MGbSV_WR-{X#tQQ^-wpid*1(y%kQ^JH;-bT;B?m>t1m;{M`e8JwVwWguf%APaK86 zlR(wp57g{~K+P7RObO^-3;t%|Zw~(E#ctTUdx28jD=xub8U7aFuL6ItJ7H(-6_3JS z4eE5Ejylk}m*MXU{9T1V{I4WT>gT)U_Xp+oPv!S7#N!_{==(nUjfd|V9RGjHuaPi2 zUJ*ap{fg+`wcGgKu2;nEciv?jyYtINanC;*U%2ZZjpy(BC-`nnbng8p{YIKH=# z`0C!>#_t|`Mf}0BpKa~j`!xLhaqB;v*ll#3{NvWQpL|6;fAY)5*?YfCd4BW0Y+L8v zSHzzFvu)qsp9IQ31%K^=e$16x+_NPV$E@#*?P|fyHawlxY@@VHLGX9Sy*r?qEI*M4OeE>Gn{T%Zaq5(@iH-6 ztx|BJQK{PtmW(~+ICZyPGpkjrCZj^V@?+0Hw`6FtW>(y)S%W~n;?~V_*(+YKYM1Sz z6>LU^!g*!%1auXPdGV80*;=sbwZ&BjHUc^9VzX3#BAaC3sT0)1c+I(Nm#o@(tLEBH zW%7!{@q=dF6sOD1j9DIb=H{##3=g_#*B8aOS#zyyZBAbyId+^VyE4}^={RM#XR2Gxyog`=2RA-A(-*Hb+z7Xweyf#tC(eP*$2-;37AZ67OBINi&aaE zmm70-#Sa%2-MY1)=F+KM%GR7lr38zrFLblEgA3Xd0*_!F1M_C3VwFW8u53fYS`dlO3yW{2FwL4w~#ZZO-vXZMIQVWyKWV#Faa12rpw-D8})goWi_dxZgXYIWGf7WBrgTE#kS zuCiUE#>QdMVX#&WIuVQoSo6n~ue=k=K?;JQh1EwA9fY=G1EDQnf>?XjwrT(XxbJFe zpCRDX9Nbf*=7Qy=(yT1N6yc7y=4=?p;#q4EVbJAy;JAT#t9S|XSBm8Zf`0C*^bAA# zJ9@<^bpNsiTW#Jc;Q$&75;z86BhQ${OVE)@X~c3}nBqwQ5T{Y+R)Wwy3o}s{W3YLy zz<}yjMfKpkS%xhsR8U`fO3GGBXQ4&N;5rSMR1d@GIc3yofa_{>X1rOMbgE9-nS(Vc z7n~ZbBn}Xkk(a9`rd&WlTD1WXfTXKMt4iRjL6RRCGXy_zq*1Qh)v~o}rUJmVnk%ib z%4M@`m$YS!NpqcYqt5H6S|q5)21Xq~aM0awQxn#s4ZCKQ0^`aSVUFEE)UY*Y78fOM z^i!rPmnzPc3P3qRH_e@2J+FZTh)8_65jB~S{KJk}!kPg=&jQK_bSrnY3Zrt>?tV?^ ztH-YgtEA01jspdZSt(jVV*SxcS&e{>%+<^Vf&iy%$wNf#Q^CiW?9z~ln|M)N$jUha zU#?QBIySVSp@VLenK8Kq$nh{Sah7Y2s3qXw%|lK>D4`4Kgh z(JynU)CITb)XMgZJQ2j$4B{CXg0rQj&WaxY^mKdZ-~g-~JSus2()of|K^0UjQV;Ts z`_-wCm#3Tx#}w(2X?QmIr4|+%6*&d6%lX_@SRmJ)DO(%^J2^jSyH&?EAx?0^r%cy^ zgb_HZ=gsn|#R+RRIAjGC6V`%5NA|EiYhjGYtMg^G1BEtq(RAyBK(Ndq9`~ja@D8DO zx97A4D-2XfKKCfBCIE>-N6<5G1{i#L#%p$^Xjjd04CW6_7pw#Bp(wT!lQd%VKd~@fRZHGeq*IAWBg-w;?5aGHo!WwgP_tGcSgF+@WdMeN z*j51Ym~o)8GZvhjr!2ERZkh!@l*bU0EqY}fqpFl-4OUD&kP(A`gUWy=P62+bgyISf zLNuY+ArnwZ$!m{jQoXc{3Ko`;fwBN_I9+jZp_VyPZ)6I_6s^&V4VL$!^%`=ONaGw8 zEX#3Rkml_IEQ+O1vmfiNo)^RG=!d-(^`q3<`Z2*(j)~6)v-s!Zl=Iuvc+>l!lS zdT%hSI)Hv|6MbGY7*I7+@tARjs|}_^N9Z>djEfnY-h8M*uOnL1(@1@(BZ33e5PMbq z9Fo<_Tyc0SoD{4#h{3{alKMRWHdcqAck zLc}a;B&9i$z6l^U?b9k*nj9gk0$LYc=1fZoOqv!So;5A0>9jTJ&T9FZ zPF$pmtL11ubur!c#LYnz>BV|@(TkDD&~fP}6ZKakwhd9j3R& zt=g=R@{3xXLXu6LLOGraU;=g&B_XG?lI3=|^yzGg>b#!Pw4H3Tmg0t{C+ma6+G)2!CgdqdxS;VaV#uypS70wohS{ni zw_h|B=QUQJw`%P5RTop$5@e9FC)pX9CmY+~>1?o>)7eNvr?Yxf*-))Y<{I93agD|D zXj*KrD;i}J?vkIRbxoV-`1y!{M5J8&9O)UFbunh%^u+jXW}EgSFsmAj%8epnOM%kq zEDM9`i?}|a!H0_|`BVHRh=6OTDLvV1G%%!a^Gz%CI&!*UmqZTI5DBnJqQzDWJFh3hzI*Qk1~11g+1E2Xlg zSEHpRuo!66kRu#)7EHS`9nGn=sdWB=Ay2^r0!_Z+fyrgm!c0$-tU^>B7d$2F>ZCL7 zxHb#+Q9EPRP`>t#UhJ^6LC9T2#r0@of%?TE@T!H*kCBd^s`Zpo6grOzM?_Kxy*L|m zdd-&2IbmW|b5?y?RjaGWYZKP2RU=&=tnr{#Ejx>-GxeKsY4KtBuqL5cJ*f0C@=NCl z%@^#`3wC`zYV!dbXt7|`B}g>43E^y7!cfgwz*&()#|_m318tPen$%@dk08prDry$M zD-K*uK9+<(Qs0f6cI_R9F}2W`fk;=3Rjms9#e(@xr#50&oLXVuXylN^F!x?S*v217*vsFv~brp>=Ik zqh==%IaMo9SZLl5Qw6FcVQ$&{MWI666R1Je*7m$vvq=S~($HSVs$s~BI&)#*f;AI} zg7#FD55q1@Gpg`ts)NxK<$)Z}ikj|FwCWLWQqQPBJHP>6P^rr21aFkkIuDecMrp8S zUv8c-XkFI9Ad&!c1U*3wIwDiRJCscZ88_212czUzMBXjf3$Q^58~d|84h`S{tU79c zsm3YS@@)cQ(s7Pa>pp1BG|)C6Cd*jGKMh!?p~t|yLYS8WwfU~fqD65Yk1ka?ya+!X z2B@b(&`-;{uC*{zUL2NsEZ8YtB~G;p-3?aEaeCWMHJl^VvtYH+VFzRV!hW1zL!8H##|;o0u4zm>$U%&dP}VXnr!E9nQZ!JDDFFoi0pfCnn>Q za-)MXVXBaum>!=PJ3Wydna(|wpUe$TU&v3M;o5JOsW3G#kSi48vQg_f)lA_cVBwLQ zHnd8%U{j%t!Nvx2}hCeVrq0UKa!iC8aKgRpHhq8I>&tPscH!%VW zKYE&TK^g$i>PT~0sCgw+BFvG)50eO{dK|l^=3_`2wNxqOhg$uZP zV{zGH8&er$8=D$k`H0U$(GCcs_WZY^Vv`$ z=IGR_IiQ)vk=`&ynz&~ zN`ep=AF`LkmXWh|QRUD6Y@_ZBT6G`>B|U`9fR?VuBE=k`@;G|LEY8~%ix>;7G?HCs zEVE?Qw0dwl3Vxn^Rdx?ejcazv3TN;u3Fe6Jj+dl&38&;{EygkpUTsqo!-`YDI7y6T ztJUHHK>(1bXhe-(`mWmC>Vs=Cu*jfdI~?w8u%l=-c^NoBvouyIFJ|lYnmyBiT)1Q| z)89UaMUg=6z`7Bs}MA{`Yy5Z6?5U3HCQJ-U7*kjG~ zWJ?Qn1?4o#0D_txwCJV>N_u=P0w7`($H)+P<3{KTwn9S#cYrv+^6rQ^XBUT@a)~cW zkXd_7bWz_ZDAy~-FsNb{&^>b8zTLHLyOL$pB4L}bpikJY!@Q>#<%+5_GcWNCkSh^u zZEZ)Acrm((B_iTAs#z$}pvv>qoK=#>&X7&(6$&2;Rlw}|VGHehC#(ue>4hhqP;w`d zuPJdFaA=yL|9B17=Bl~@08^n(M8sw+v5;~w?Axg0E1qIApnS~F0+plPOduEC5OHB& zN1~-%UK-f*EXa?H^sepD$%z+TN)}ynDUoOykDRz@%sp+peDi?#Vm?ycCh^paIAgk5 zX?@GO0sjJtG{qpK8IHxqaAI9~Mi3xyKy}|wR@Ml!9s-Zxq6n0b$zTOPYNEx{>?j9kB~MSEk~so6l} z;U&JnbrNARgaF;A%6eD3s9-3+cf_$+vSF8@5KZQ^tjQHhwikd)${)TY2HO(L;({pf z4O}0=3|bjihB2cOUc-8-eF3<<;!{{SSt>J9hgZx+SLN_7uVJFR`h=apP6Fn1ARJgV zoCHC4Rf?)g_q=VQypi#%n5vbfjKc}{nsVcsn zesb*L=uxMlEl#98O3r7W~C$obBOn@oJ(+uWZlI| z5pp)lbwPgbS{%uSWHz9jrB7l^!8iOYMMIV3{?uVX>IuEGSBy8@`4~wtZUxO7K0I<@&d5WwaaxSG40AS zla6-pa=L*{1)}7>2}bs-dL!t`Ymn~W5Oe{Oo*%#+0DxklcGR4~lkma_U!1AiGkj&2 zFTNG%o{OtO6|;{AKWK;(w9Az`sqIX-D z3XkbA9z_$4rJ~;bUax52#;;d27@K#A3Bz4#2kW$g`Fu(pI4_Uh^3pLTSaZKW*2vD) zrXf0-m`(=LgJ~B=rq4~~CNAbi2Mf7E0foE}H84C@$cZy&a~G$F#|E;)(<9k|Gx^b+ zz?chT7mgj7K6V8B6rRXs2N8Irz80`2FuwT`YN}l84C(Pnd#Yea^OMS5qIeAxpDLs5 z2zla~vlxjFUDqRX0H^99R&H^^nuTNBtt&f)=w)pE&NguZHn<+EA9>S)vbof&r*3o`OJqbOj#?DOJ6^VLIuENF!vD!Y&n4fb3o1S3X7O*8H%_ z%)$b7IduSr&PspB%Piv*ff1;XR!640nxEp$N(Jo{G}=Lrrllh^<4cnwRdL8`r{S+J%b-^_3hS`}NJsC?$56x_qhqHUQ`fN^&|SWlh8e6zsas1ahi+p+IK)0204D=UqqbaV@0Tn#aO$?~z{^a9hNLFB5k0$v}q;Iu`S z*gN8NFp~FCG~R6zPeK5ib{LD>@Wcl)MC+mRWFoE-c?O7Sv-D20 zXjO`fOcPdswQ>h-w}^)r)q<^|bqprJ!8mW1OX|&)X)E+Bg2YzADu{~+v?52W)k|nx zui6bq5FQOQN2ji8hpWMtVd$lp!Jz`mB1>fB#I}=OAH)3%_AS`2Ko??~X9)5E#kET; zdySl|C>YVKA_Fft(BW9916c=PJf~#1@;Ds@7Ct|&%q^9^&ohSuj$ShSe0<>BAO-U> z%fAE#bC*MRh_#Eu-fdz1im-PtSZb5#3*hFxkRcg2^-_rU7E00M^#niYVQI#-UNKQb z={U=wbC*q6Z0Jkbs!NRp^OdxvSvo5HgHBdz2nPJ}yk0ONbEG>}H0)`TgajU+Vrwj* z-hw$tP{!Xc+lUZ&s_jz^7inj+v?%O`TSM7h#i|1vdP!kTh`|(>G&C5Jr_^X58|lQ9 zXm8NEJY>$)?4qw7AVjCC6QW#(D7^$u=M$o zjW6dwK{T!ReJE{>JZ_>mYn*i3_4sULoYgxxT)NPx;vHHR3Wp}9#PEVLdR>mH=#+qD zRY{Gdw$@|q-C(fa_ec5Da!^1rt~BFrAS79px>Iz@l;i~{1qL(PSl|Td$9P|rOG#R= z->W(*uUA#aq;TEQ1i$7eMinfOcE}=s~e_w&qBYh!eS2pDlI^ml+?r&RKzR2sWp#IQOEr#3}InUxH9kcFSOhM zEVBqFRAI4FoCgvS&Mc`9EaV5{?7V$&9~hqC!$yiE^991#P)^H)caNN!StGJhQTD0= zI2`e7(S;(?w#8^;6l8?eQM5fFKKksKtE;ZGEIKshuEHeLm1PJsB3NU-#1~Y7gc`N3 zP|ToGHYp{8RCsWRtXURiJ-%rOPa;|-poD@o_Wt#Y{Ol+Tt?;cdn;saOvy{>^VC6zF zB)rF`-2gH)^AXmdt1zG@u4n8D^xvJgtAO4ri?}BE+?RfPz*A$>44Ns1fiOzi8A&l}ytlsyvNq$RG~ zw$VCbtjZhQV{q*6(Xt_`P971t`x-bd7&W7D%oL)3w(jSc8kHckdS3A zEZBY=>IwKp3vWriH+nzCxVebd>7q);gaq5{RrCRenD&$b8{iDr16%4(`*XdmE zGNJ8NJ64m&t4sAz{c$(;U^q&;Xn8L}mz6}px(cTyYQo*B%1^y7p*@=Sk|;(Yz0us7 zGniWPZwUtzup+vw$CMS#h3ONla3qo3U)OC^nML<;q4tb4Pb$9M=@Eo8(kNN$KD83+ z5)%-@6{T6&OUS6&m3f2_VKSTP3N{du%xjfz@=#UMj}A z&t{Xfhvi}pAG!c|Uvs503l5Gt+qPJ7W-pZ8 z4!*w)P9i{iLJ4*9kch2G9a18;h05V(@olE9oCePq2xtr1zU$r}rUNO%) zXc(24m3hTHhUTwSN@Br<9fR`71ySbD`~`>}!RT?0=Fe<{$I?(T;BvKeMV?4i*w^zl zK^C%%lmJX6LkUHz^Osb{GdLCV=#;DHy%{N2y*CodRX#ppnD_#JwKzlH;yf&}dd@fN z`uKRNvOq9dqGIz(WN<~d>F_kloG3!7}7*G+r2wJ@Uxatg%EMk?Q0zgMp z_$AbKYH%~@pkUS0=F+vKAcgVeT9{chmxepkdRl02xaq- zHW6zGEemv<&^ZKLEsN_ATbJ-MEx4YAwE#~*u)p*we1Wo19022AymT|Cqw(3WwYQcg z4+PgE%owvP99D{FSQPq%)v>r~g%$l1QD=(HaQRZnW9Rub3dG%^QVKbj#=WkYTAd5B zi!L$Ec*YP3Kme){4VU>n2Al57!+46d#i|OGnYSbrlgs2nDR73f zFA}syk?TyaqM0>dB!>VySSXA2Hzh#Kd7GZ-_TxNTfLUeGuk6=kjeb^@0FzT{6zkCh zJZFhwic10juPjCra4nj)q$xPeawJ#et!`}%RHPrLm6K_T2cdi8W?)u04kmMiHBiC1 z#=$_hYd#xH5lnYkW%DWnlV6>Bi&nQc^Hce0Q4)CNUHwwoFzic~NdxGhbsVza^mYoT zR_6R`D`%{7RhgrY&Ca^`tO#c&L=7CpIGoQ;bvkzy0oq2L7(Ui8Y%V%FA|#p<1TG}vLftIv7LpT*5!7FyBm+afptd$gs(DYo40L;41Rj>ru9whA zWwaa2r9ZbJCkBm-OZ2-Ea-v{!1I`=9&a&}a09l6YpJSzgE~?r%L4*NgJH8hbgO)|BNt{_+MMp=tJ94O0>|#AI>r)UbkW65$;=0DhsE zE(}T=Kh7s*DT9)sWrbF~IO<$M80kAKSVF6JON$wihq^MglYAjfgRYH~Gr{Zg&_cNf zR^UA-5R zLf8-MLm=aO1;bKw6!~EQy)uH`Q3NbyyCK(4im;^Vp#QFgmoJCEn?qC&?`!%Q9apu^arl$|-PXn#;!v#HBw*IyK)=`i5<48UJuO2;4CNr^#vqz2)g?NyB+yeUtk2 zuJk|9H$6?yEX5Qm08gdf-eQELVYYrCT!jHM4Ns9<4EWZ3O|lDHj5?~E@SKg zU@1fa5P~!VByJxmi%Ca}I=;5q$9$7$#}D1rloLdkG2Zj+_3#}d+I1fKmd2O#D_QuG zw!MJQec(~11V`f}j&g>biuT5sI>7uGMGz>(O35E9Zt=iNTMx|OPQP?n3^gjncN`W2 zg}3%UaB_Njzy$WZMJd$rHe5ecoVrFe%P!xg3)aaD)F05!e z&)}15oJ~H+hp$z!NCM9u2%+vz#_(_1F@@k&7xyJ++<28uhW+3DocT8_QKTW!{GNLoS=*6y~jRSt>gvlJ%cb2pbLutg7S4z5WM^ z(|G&8S~eF4%BJh~9->{Oz14>6Rf>zW*0zYV)G2v+Xx^$J-m1Cvv6_-IV%75XH{7+o zYu>i2WYgc5Q~7wZ_OAxUuW`4(86Alt2^PioyK<`VB<)i{3LU{SmXFxr#_!d3ey_Im zd)K`8-;5Ee(Rs_yg3J(`>#?u?F4198KL1C6Gs6=VtAt=oN;tNpJw)ff2uRabj7z1I zlAfX>EyTfPO9f|vu+g>%k~oL_$v)g0Sd+ttwWPja(h)5wxRQsD0f#nXB7gP$j_v>C zpFk7MvNSYMk9?9H9zDW1R`tv%EI#rHNfL`AwQ&;J6fgNa9&!PMku-|mvsxQ*fQUq+ z%Zj=+aK@BZ1c||A5=GwWugu9Gd?R)}a9LmX)0H>&;qnE3TFlfXFoCB6f=M2vmhdeC zPj=xMfs`;MEcvi%g}PP6`>2h%c|Va2dIP@|7yK2`KuAgS5R7ReLTo)uzIHjN(J(C#}mO^BiK%mQHv(B zMDl%=H7NKewekki6;B-(89eB<(CV4xZ~RFPS=Nt=f7EElT+AVD=fK#AhR?!>@R8^X zB%(j?@Ccs2eSB9kMsr8=skC>py#DqIUlu?zQ;*aGA<)&6Ts_8n6XBFKZ(g>YnkLkg zbPmdsbP<$yxXPan_4cxsiMbg4XEejV$lT<|HhtrR93|>+C}%#D?aG%)2HX()^3K{V(+{`lFcsyUhK~pHE>9N)_Y124#WZ(xZj| zcK}tpsNTy#DUyqQ_g;Jhwh3=c<>| zeoP)9*-B}uf+rlkVJ(04QkgUHvBp0#?ENUD4_ZXS!=dCspX#?#M(Y>DLP<(YBF)BG zn-UkP<{-cj=ncdsNNDtbD8aig>D~AuskGFUi3>o@pT)~U1-qpER(62WVld#IMtKhZ zS3HB=2TWow;57sIpx%(p%sJqSv00Yc$=_1eGlhqM63dEG?(wf^A#}2lIUedELry92 zi~@$R=3~sERFSk54JyeQb-x&s}})8-h=814e<5L1lG_* zg#M4Qe?W4-QL9*b_of_Bd2c>?rdfQm3d7~+ z0Q|RWcwODH47)Ma9Ai%V#Pl@UO_g0>@1!Vts%8s3;$7gs`8?}i?V%hTLvQp~e+N)w zi$AqconP#E=;)!7+S}T$2t{ys9uETla+k)gxn)M2MC`b0=+9x{=*Ed?WPz8a!u3RE zYKMA9~y5x%rXb(j%40YSh4oX{6q2e60;&(Z$=RmB^?eXsltGaFNdCv#57b86acb0lP&`|9+UyR zTB(hiO%D@moSua4v04c$&jWc}vj$L#DIfF<;nP#fm}SzLs#fLIutIU(@>st7INs1g zHcdUxieM#g?eOhSdGW`;n}$Zp>iU^?_sqL>7UaKtDo{t|Tn~zO!jE!>iSX#nk;pTi z&{5XbkTN6s5E$teX8aTNa8X;UQgE#-`5X7V%cPK{Zb?au)F<N_IdZq=mFdA?Bx5|C~P4BKdR z1>HGKO2b+O4ah{?;hjY;gH*}-^L zMo6*~M}#Pg_$IHLgv8KV3|~$5Vo#YRda9KnL|4Wkd#N;DM9=WAMo5d7Q;YapXqBQ< zQg$;_6}yOs1@>1OiTHAv!E%{@64viDEKn0i+EcD47e4Kn_~)_Ih?hIN!U4uBgg4a(}gU&@gWspU#2fjotVwn6?dl)yWV z?@al

Uy@J%IV}rq$O?&_f!o_izhcAct-M>Y5KoC&_M2UOrHpyy02=$PnhVE6}_= z@-<;Y*)s8$81b3Dl66(>2bjAk*+W=KA#Wcv!;|WZ99X5S#>S^-;B6g+b5s_xh8lL9 zD$x}l+SaK(r+CTYhmsMC519+L6hj1KIG_B`rW@C9r{D=eXr3ONB5k-+sh~=iz?>h| z;s*_=27kij`ixi$GnOWE@~vmw&~BB&OmCJ@K`2I`%vJSMUu?fZrc;X$tWG3(AkAi6=>esAr>&e1Ho(qK+Ewly(Ei|Lrtipy~aR z6=1Ou6QAwydk{P~#%i>4mDFJzuu;*j`Vn-V<>~iX@a8>xfd0h?5=&^-hqirDkw3Fw^6(4CBq34vd00Hk*LroCj*@9cr9C=$1rij;;N1@NAGiodq4v2^k!Q9v zQwsrJoEn)`>S3&K6yFK(UTY?HCla$p+lwQ(SG;G5OX{+DgaaR>olvaHJJ=yR;{FF_ zr>DIZaJL_VLzoHhcTP`Fjsw0U650z;l8y8T-s8k6CzEB$6o`fhG*kA@ikJf+lEgJEFlUxzAnUOKwn$-WlPr&1n##}*Jp)wxgO1~gz;+{6>_hU znh&pW)quaH?Sq&ZAi%_5{fIF=;YW8_SqS^EQZj2LJ~-l1#^_EPsS+rYK0b=&41s8A z`NkIsN01B5&O{6e0#YtfIFs$=2qo}QVq`cpk%-0zF5UTTc@A)UeSU##-e8t666hAx zLE>#QQm_Mj;&p7O5p9Z(9T6duqSNv|J|c1UAO(k4XOy}S!WXQWpk6b|o*XA7VC?05 zTDHEMq#s%1vK}J?0c)YkHfj2Oc&0ZaQN5x(?}{4yt*M2+Xbp!&c5bf5(zC46YoM__ z)PuRTTlkp$NKD+(wKaY`rsy&4Mm~}Y@;K%eFX3zkJ3ah>AzOT zZ>a{Kb;2-gotn*ChwnQI= z5`Ew^!FN&|1K(kA`yj_5$Z zHDT|uTpz_Ag}le8)e_az3vsj5rxOr^seSN01o1qIV>E6H#%JV@(EOO-$5}cAd9lQC z*{2g!!vUJ3V>C}Q)Vt%5_bAO%AM~;W=|&#s4BIJEOGhB@3Ci6^H65ZJ9H23nG|pc5 z&O)6$iWAhMLlB2G%~DOhP`^p#57C!L*9WP+)RP&SS8V5yTqA7n2#o+;tO@&Al(UZg zpC#WBSQgSCSH3>@GP5h?Qk}aQT$;Zz78K~nZ%@VGiNi$&NErM?BSxK&) zN#T=JlLdKuW%*+?cQ{`-niCR!(T{V5^Hc;suGKMF>Nr8WxKfF-tIRQQJjY zSBvJPk09~@)rW0!Trc(MFqFa>Ekd|Y?hmZP$RDE_JSO;iQqJ?NSJP1{KSQv4g!U4` z%Q2cQ>>chpTuEbRRy-yeq6RTJaT(l-0NP&khy}=55#p|_sKURjn3HJ}kQ=`?qz8k(af47#Q%$#i1%XP6x zJu{)S1-a@FGGRpMKMj4-d)y79#L`#6hokQ%*zblpupvhg+#0wT>ws%)L|+wrcZ$b_ z(RvNOqRWMvOvqP{seiS;Oo++X)0g$!7tCSo9)~ms>auC2foOoaLqD!b9crwH`WbFp z+>WUZjV&?;EiF>+qMvqvRuac?fqGnm_$v_hVdVhz3y5RL=flPUF$noh2v?wlOKV;f zM&XU9d4x*Vs76;9=iZ1q3p9@iolxV}9Lz4RXO;TxK%RR6{-l5!PgaVBUh1is1FBP;Gh0E!u|(x?z@g#?4TH#)3T+n+6F-n$V{*t~Kl> z-Wg(3k^1Dyc7!t}@JhZ(BQ6uR>ZW}Y9z!?u!G)e8G%e5!nUo6b2&CNw@P9~LgYSL_ zjnFK))I&?A_EM^Ga8dBTgOFjU2-h##isq0e;~*S*m4L1?E4W4CCRF}A{atkIl0Fn@K3!}(f(yjN(f z2MPD%S$dF8or8p#Jm~MNhW4GZIL2N0orr}n*sqQ+=SU2VAmUz~Nnc`j1 zO)zJBaD;Ql`Qsr5Xpl4uR+Q6v(#Ix zM{IPd*AC5`SdTd{4g4Et+ft#7mvJ|V-qb83(;4KN#6_U zC2_ad2VeHz1MWVUi@U{JfnxnvG8WT&JU^x|Wmc4@LN}f4gbTaEDGIw&>TQ#-l1w?4 z^isFQ(HjuI8*zU{?#(87Zf`y-qO~B#VeHd@+X^tRQ_!1fsAm-NoC3_3qqRYNc$VgU zjB*S@Ug1PnWT&CQ7Iz3FhO%MEu3u}Xb zS6%PpZ{#@6L+-*&T6~yR33tF+ckJtG<0#_VtAyzabWU5avJ4Mg>Wri<&q$~v`r$x< z&dLVB(g5v=2BZuUMUCev_efznvCGdrLVV6V)olUPSg@ObV(PnDFYo$>^xBCQ*;_LHI0xvOfCll!Y3{A@>NxLk;;UqOND;Nm!@To#{G03uht4 zBpOYfBz$r-!qm1kDo>&!aXE_~ZC47Nf3`fi_{6IdRjlY0i+D~)o?V>QO%&|{`NYzP zURyH`fr5VwVx^U9dIZWKX1u+H?m@w4af1d{C!WTn=I7-p5u~vX(n;?SCAdJ{MeeeBe$mO4NX@77 z&*nVH(5dt*vIiE?nuwJe5_aZjkIoQu1k*(C&Bv$bhke&xQT@1mBGBrHUT;?xzUrh} z3{XK($7$Znue5Y)+$eNOiUVS#*P`f1xmnHwH;-Rfw zH=A3rDcF)&U(@C`OLKuIrMOLBg9#0i1_|O9J$_W3HDeH4rubkBczRT^*5oAAOd(X{W0E-Nf@VYPtY;d`RPu zYQz&W|LpU_Ra&cAI{S3#iLta2hx~&=!&w?gnaDsqMihg|0IjnpGvb|c(OnXSxZ)Bt zi4(4-E;=+A{K#64u!48w`3Ef@jpKAEVws2NKvV#}Kq#+H$B6>Sx;I9}=p7`WwB(3r zTiH{Prh04RV zz$K~?obtI{glSi@FkgnErp1SfIY~t+m{Uu__^%`^DeJ2QATj<(qeJYz<`jN+h_C9F zoLrBhf6u=5G5V5axtls!a;dm`n8MvdnxqJK>!Tu)XMu6Uh@`X2vL)B!&uz&$^KMp~ zg5?l;Ps5mxODxb=0hX`^yiFD!ZMRS-UrAdxCGlAB`lql#w4Aphy{pY?TstB+D(Sy@ z!pgS9JUS$mBrsQG$=T2x0F8D|-$HAF$$4r?$?nuS^q@bIY+;odo|hz^zbY2NVHMJC zB`s}N(pa%x`5^YT$2I9Le^I_7wv>rG#<9=K(?TTc5Ci2m@#&1Z4GstE5F-u3@eP6} z$Ae6zOY!LuHFGA-0iJvMEXozRKS;xb>j;vQdTAys-;Mi#ahblw>g|(Gh(&$JaI;YcBB{gqQba#oOsvXMGfMvFD{f2R=N?@xVVL#PLFe zbQsW9Vo+NNKGt!sK?^2J0D@YDIf+krl`aY9HPtFLTVbCMMqG8T+KqE>wB+&OSjh(K z)HK;f@wLndlRiaSONJ3rEi4L5(Qo`j@FN{G3H$RbG@g!Lfx z>Qf*!;Yi|1?G&2hzA2i!wVYgDnWYaX>NFSVTv$n@Fp95?W(3epsG3oLPoepp<-=b| z2cilMwINw9U|hREZI*>jcg{<)94GUVB;czdF>Et>ll#rU>xwv0jITTpExTbte)P>D z?Nv=zXj<#qPKws%;{$-Mvlk*IOmB*Oyur2WBs)VgF96ppE}^_x_2|`->aJJYT9!oY zQT-mGTs|EVz?fIEF=JspcND}pjp<^a2j3q%t9pIK(3t_V+5#-keMrlilH(78uPteI zhgOzDzQnFa7-K_`Rl6C#+U>30WjO$9kSw38|u8!Jyc#W+fY_`(Zfa`p9w&ZAH-D z3U%XI=-E-yh@-9DNl3xCBcvZkeR(hZ8<2KrsIg|dvmR)bZ3T+7Dt>=)PaExLAaxQo zKf5dqSCwR+>ok)*UU573_Be5Gt~}*&e1PiO8Q$;n#uUvZ^5eAb%3k4uw&R1EFy3ip znvJT6;V#d<)|z4{qE_7VVqjdbPYlC886fM2X@GIGeK;d`4AN0dZC#No5l@Nbr7X3; zyx(?|?Y)zFbe?+WDvEad2=yc;W$E+LihE$;kzwm0b{y_fv-(vZgZS7$;2yo6)c`3(YVt5o)=gOfP51v=t3ij?wn-BgLUb#?-=o zZA2>~sE4U{HKB}rf}_DjxD53ufvVVKOEJe~GI>L@mOjXH9%>P1U(13$>@iBLzmd#* zk|`lHdYP95WS&&VL2{qxYDg-ua7?<;D|o<|9yP@#5f+IPP$Vsuel`vO&Qk>qDpH{3 zE77#{h@2;ltrF$o686gqw3iyC!J(G3EQO&xvh%rE`bDR7mCBM?pFeCaXHryl%p!^grIV^7TD0n(i5jOP3Oa6b-B$5?JMLY_&&)AA`N=wy^vnI zTg116@GeF#-R3CK4Hitr+aSGky9ssEM};YEWP|z};{xjq!e$e}!TDC0`{lYZcc?4N ze7QSmX77or$eQUjg*7C6D^F9NZ_Rpx%W^^Mfs#eAzQ7@$FYVA^Wog9+&>@Ln=4dmi zrr&%B5Jy*Ea#c&HRK9sBJ5X-*)?wRTiwbjYwoMuFVM|P7JtlOuV$k@)H*=2@2#Je9 z@L!Am7?}ptAm@ph$cwiF5=HZ;kQ%b6gV38ZA~BtRlV(cJ&YVu(DF$mT<7rlN5B>9* zNC{0Bl^U!{q@g9RIYbp_2XE5y!SE^!40t9M%`FGQGFRWCiUh)qH*1#Fyed|fg=$I+ z{iH4xR9$-gOR)Ow245W9WT~#*3|$1QN6C(8?UYR`8e4T=%a~qgn_F3LAJTzM z#p|584we8YokNiR^|dQ8wVqwA*5*(c-$Rx@7b%uC%FIm#ZA|l;{2EI#E!9lsCoaA* zwZ_N<8$lcrma8-WG$JMXSSBiY&?(NEu!PbGnx9OemGB6|wc@L;pET^Sqrsx`gO9=bXDnuMmu6_N@{|JW3$E`rJuUpp!GtyQHY z+7;M}Em1%g2M4JJ#ZU)L_D6&=#`IX(`v)Zj9yP9VMKcD%Q}K7{G@vSXZ$LR6R;$*i zb;nb{hfH{GVusZazN$)=XxR_5?wg1O4ZT)ZEsE1Ve-hSyM@_X9dgJv7m=4|Vi_dVS z8QQs*ik0_O{IB8Dn!@)7@%2b_4@c9;TUm-G1 z{UV?b2Qj111`p)dP{ZzKHE2CNd2_Y#xHe9$z6cv+4O1xVw<7jpW7Ufp2(VZs7cq4evDu`;6n<%(`;v}}?up{YAe?IC^X`(DH;C8nlsWE%`m#iZ-~7f43j377 zk9r_N+_#_9dV|EZza8KduPEIIe|_St_wo`O9Y7n3R+r)J}0_Ao? z$=%eqA=-08>XCr^PEqPENPipr{VRYB&V_%cVYdy5i*R=B0T)HJZ-qG2ykV+nIUo#^ zl`;)6OM9Y7^a7vKd?ntLbN!f5LNjJ|!Un?&LciqZTLH2hsk#gVakl3Ia^XN{H%o=8HG9zYl4m16m=FIso2DIcvyHRhjV07 zqGElGrC9#0L5Y0v@Ko9oRvVW+(80&i%P*PC z6Efj;kQgXPROrW?BfU&bS~HyyY-g>%S%UGbXvT>Tr<{V4e9#o+$bzwK*Kj#77n8KH zF?YE4mTIN}B!ivH->qI^z@ zj29?gBvCy+0BKRc78{lP1Ls_9JR?{yNmB9YcrXnTdsyG2LcJlQ1FsIQu|Rs%e<>(> zb3)bVN}Z|N^kP%cibveW?+Hb2S`=?)U94n4;qjFN?M0E6c68(;n5k;FHY zfN^>>$SxK=CB#8b%GPW~lq3;F>Lan-v`$uev$d5`Wza%c+^-nHNl8$${c|l~39oW9 z^lI>ObZzDJ>h}`|z-mQTQdN2$mi=%o;bwIN z9=6)@jp`$c`y_4!Knv^9#FTBclxeBb)yP=j%)jvYpPW71JM?dU^-Di-{Ksy6S)_jH zv4_uZKk|+DwQbGpF*4iXbHK>d;gdBoxzsN_IQ{O<7d!6da2`G*@M&qw47Lbiw6t|T zvQ8L@bW*HKq|@p3X|X=B-v2KpS}{7ECeM2C$c!DBvBUq5(mVY04Q-+&;Rn;LB9Y)) zu#)t8k%C|X{-rx)8y)EmkxZmhR7-2OVRV`u-K~kuosVGt&h8E9)w;I6yGm4&F|>F#!pcgN~aDZXuOFDY&gKiaoB{8HcG8}TUL1F!G>z5dtp)E)q^ z3BYV6+7j@w;cua(tqZ};NT=J-?b?wNEk@@!cv^*FWGr&e0rXS)j?AMi-Lw(L*WvzJ zXP}cnrv)91T-R-+QytyL)=b05Jk*tL>rNz6nTHTSz}*Z<>(G0EkWiaMQH`alPGAQrvrVFYREZx@No z(i0GRvJEyaM6PSgEPV+4REwZaZtYz9NCFGM|C_`*_N2M~j7S8sq`T4^M2nx^#!BCJ zuI-qP#v!Rc2xL(BX&uWW$Qfz-&qm#v4slVEdfVDwf7~_!{na0;P{;828~xVJ&>QpA&AL|DA-C}8`GlJ!qSwMm-v(bL z-g1T>M_}os7s(w7Mn3#zKI%2|=D&t^NBF71;MM0lqW}}m^0w73?oWF1=kYiC?&Ivg z%w@`S@Gj-vwO&JgOY?>guQp@;Y0|Cj&3j+_>j;M*q~}lzlpHj{jyL9fP~7pLlz1rH za-AQ0P`vd)5BwFj92Ck_k{?-o5YN2Qx;8wQlIWz+X-B66o%QH!KxZR5X>>NBvl$#H zI*%vXudVAIg{WQV{CNumzXgZgy1zhY^IZ_^ybF98bhe;#3p!s)Lc$B^yaluTC1(CB zbiR$wU!(JXpz}BAyn@c(qVvDd`8#amJLvm+bp8Q@pM{>Tdm5czUJt>~q4O&kd?b;5!c_T;?2{_KD3vgzZSS z!IAfrk%0CSEpW(ob|<%HmOh3Bmv0bhx3#;~zyL>s`w608@%)BZAOZ|H%#F_Fhk!gq z@`6*AKH1)l2lc1GH}vY?F;iUIpzu|;hhKd)`(MqAY~43|knPB8c@>UGe4N_!MxdfH z*E*LzlR$z6s0$7$N+z=i9ta~@MU$Ahmbtcxa%HZ;v_EZhF8xpvsh`EnB2aYK`d`m8 zPlsOZ3s-Mx{;bvazj3cb-5UQW(yj3?9;JiP9sWy82#UZp^?v@u`A;4jJ&K%6X6YG# z+dFUmw#w#k1d@_SPcD}`+8F*bOV48X3_7?bxLdBa9x}uoqV14j+#zsFKz`tsVAY<> zEIkil=)o7aHM_OTTTT+hK>X4~XRi?zaSuEWMvcDpkhb)5T%ZH`&c1{k8F)8$6ZM_u5ESIme~d=&8&Rrc!=18$O?;NErd5VSC0(nPRC0{aAwcE~A%6!uc;dY%``*y;Oa z#!PohC`Qg6F5(7eZzu(jFai<}|HJEf!7};G(l?YJ7U>%sXnJJ;!TZCld$Aax9gNGh zcEjZ6D3s6SDU`bI4CGaKNI2++GD!ErBt?QIhiX~_SeA`7rfG@QTn%>r)Xa`Ctv8{dcHvDeh zwk?HS+13svI+wng+O}IxN zr#5fL+P7~IZ4lhHxqWkLbGsMlYTeupB@^2>BXPAIa8zR3w)NfX0QYR$CQ(#EBBHOL z^D=B*Z~=?&AcVF9F&;!<%3ey@DOBXw>ETZxNak*D}0vLlAx|lS|S7y zFQy0&K`q$bZ=>@H;pT6X`$`)MrywdtQRu!h_(ohWyEUF6p+=Vx4gvXLYs+xDbs;Lm zK0epZG&A^U#hzol{+x%9^Xg>IBdp?=*6%rW>gHkgQdrx@HvhQ{;tYcJK`U0B( zv&e%3y<1?xy0)kU-V(R*B7V#W#dpd>Dz!zmu)Vt_6th`=`IP+*wjj3{^=NOfM|)KR zI766qJ)O8)1VVU<;vfj*YL2Eehm1!iht$#1a)N|_nR9%yf46h#dz9x~JM5awvcWTp zY)IQ)`mFmVFmUVs6rDdq=g-mk)&}NuQYguU;$3MZ%36ot$Y&atKKTE&8*G4gj08Gq z;9E2ALg6hA9JnytJ0IvkR%2;7bB(aBK^g~`YTz!2$oT+Nph#6iS&h#weSGRxKVirNEz zdzJv&Oh{K-TZmz&AQly)82{BR$Q15(i&~= zzS&zW_5U|4B)2s)PP!#dwch`FH0uDFX@m{2E{!Y#z+PgvNWlts5msHU6PYjN6p$+U zhO{90#V*KzAe%(w0t^Np?l02Dz;8Q#uXSaX_wW%5EC_6z&7`VmK}{BrzL^{_lGq^Y z!H82Kf_u3{g_cV`uwK=G^(wAq$%E6YxVa#&2clOAE9OZBlSi5%lTXt=+=nU~Aew+w zN~GzSSw3knAF*um$6op<{&vE;B_VzSsGl~}(Li{jknII50c4ONKJ(8X{IkTn=iYnA zm3x2mkKT9Ux4XWQ_+{(q?yh%SeBdX4RDKiAp&^XtFd_uOB< zW7ph)pW5~py&wPiXEuH`d2r8Hul=&~{HE_+{5N0u{i81rpZt;BK=RN3a_@-u`*o@+x=ylV$cCJ=4Q&vfk|ID4MK z?TfezGRrTZPch5OUxSFG^b!HG{D(-a&=;bhV_O83eu1S{%P;IedVdEg7_pIW?MMRn zKM$396@D#qPL-!FKY{&B6PvJuNv4OAoZ%tWWac3n=}SOLJcN^h2i@{35Sm;EyXm3U zBvkezFvqDDfT?sU1(VQ~?rOmpQZ~XGv?dd&u9jr71y%zGj*3W(g!xFcK`~g=mi5Wj zL{|%@ckKYaI_)V0H$%U!cP4xVVY}zu6iV5)IYF%d9W;Y?2ui*~++l3!&~ib~cBHY} zKwV08r<~NK3P9bbw-;Q!c?kD&lyaA77 zlq$Zj^Lp2MEg{t*Jy`wqT~vBc=kgdR!%%bk6B~o-U>cDR403(Eh>kYTi=36`-|PFS+W!p(LfjLQ)yBGH zB9S5yl~OZrY75p&g+9!i7D+ioG`A+#B~o4vEo)0EmD-wYV~zN-{NP`TWb&QY^Ndnb zv=V#p1nWq_{!HPvy*|>lp6t~1o3It7kDElU^Ao>UC1y6Iqi<$0L-VUGX zyne0o`Z8<^#+7{LUvF$nwo^__OyLGu-jhQ4JXZmmXpu9%uOqn*(!i5S!6K5p9(dX7 zAD|@y)TiY2o02Wc3;!dBBDyk*z|^AKb77HXcNAf<&WZeQ+uBw z_i4)T85T=Eb4xO%HTfC%A69;O!VoQDa_ZeNYu%HtxOKBqv<93?-MU)G$o<_h8TWU~ z-+90P2t&vI?twUl}r? ze%Aol=dGv2^or8N&{e7e+g#THSyKS)#*WPO zKO_Ktsohig;J$&0BfFqyq4c*h*T2d5;M=evVDIf<6TQsQTLI3Oo`vK)0P3Fyn(g|x z??ByUC4ui*#S^hRo$I3=NnpZZ; z^LB-6MCl3CvK`vK{#^)Wa%re@Wn;q2MG68wVbUFNT=1y|lgAn(L~=+J?4eVqUCwEu z-BbD~2^UIdMP{WFQPaxScEEX=mF+}Twm@tq2eh$Nv?z+;1)rjM0eRXN2p^F5qe{Kh ziWFTJI=kB2Bzf57`F0WE^8$74XQ=ruiO`n2WKUa(R$SSok*8ghbC1foOU3V!S}{uA zM=h=OE^ipU>E1}|1IoT_g0#7Q_pu|OT8^{aM&R@C4gIiXG-qVVQ zQ)){R+rs38R|}BlGA@-umDCmil#r(})YeDAj9jT-p+Uco=(3d$(C$x?FP%`dnvBC; zkU-Hkuw6U005C5+kr3Cu$}1xpDV9ZqNXA8DM_jwG)S z@?20Wpp%sYkb^M~_43!KmrtVX6N@fA$KaG=1ee;EZ09hkld(mpiDSGy#yM#|KcwdK zBWn6SvP-ILQ(PQkymB(fvE&AQI>A-IPmN-WDd=~w*wPDZFp|k7NnDJ$3(0bl9Cyh! zQO`(KF8_vB!3Nj{5WNCGwkJWH(5E|meI+9s1gj2TSE+X9*E4g4SjbfHC3ppP?e8B9S?Vq(|q{ufeg9KrVR&PW3%$ zq;^-Hh3L%kOPPIW00Oaq&{}}{M!8HPy(7`K9Zi3>Z^wh6J<+y}u;mw%-7V>^)>LXk zvVD7Md#b&wwLJ~Zr6`bU$Ac5jC0blku(a`co0MV~sry6)5|Z!$4Z8`mp!PGtX%sKB z%TK$cCcx)u-MVS<*zZGyT6=xJyzIf%%N|_443r8qzIlsrHo0C`=EZna5%@n4_G%xjU@gd9mb_)yZa10^Ue zo=irEY*=(y$j+5-p{eB3x6-#JlNw|$BRsqebOQ-cR~jS$Sa}7dckt<4`EKXR_lVJ0 z`8LWkcaSCFjaL3Ybz3r(AhH6|zmvJqp1EP*|L58bu`Ul_jux>Al)L~tl(`6uPv)UC zdRVH8d{5>gpd|x^D8R>OZfpetXesk9SXclJ2$4{@Gu?Tk3(@0^eXQxbu?M_enHvXC zCb1P~Ww|r+E`SUYIK$2$`2~QVAno|=$qtCiEIrAD5oSJzqHtpMkN}#*Qa6rvLJxom zIfr5w`U9>aA^jc1)lwvM4NKCQ@&Q-^;|s%G-EE6%G@}K3TPlyQysK?5VgFK z^~@XLe-x}QZ|q|0itFE_p5Mpc;&Wfd@t^8fGZ7ydAkTsQ<qi zATOn@gFc%#OZAfCaNm~PsCaOcumH`fYRD{q2`3~?VsAu4D;7ztfDIzm5|A(vNop2c zk`@BJo7|X|l|nG(`4YsxZ&Jc0Ah8p)BI`2e&;z^3Shp9pDLMur#v4}3_7U3{T5gCiZtMQ1k2?Zd5pz?@Z;gH9Dda9D@ z6w!n?MsZr*?{CGhhO~C!}TD6fPqm^;el4|`)ku*n_9?IemG|}TB zlz4WHvVcG)bD@ZeRLlqw)H6HL;>1`0P@}=tTf7<#(aSPZ#l1aM*xOU#=Y`6mDNV*z zcR7Nv%Sl_F;1LbqBCnz)*Q#gU(}gElB2$1w#l0$g`~y#j)5SwBD_!_lHA@2-)Qc1( zWW?l>t|*7aBW!(jP#n(_FLwkx+=9EiyB!{a6WrYc1a}S(5Zv9}-7Po-cXtWyPI!EO zuik%eYi4(+r)sBVrfO=sw?Fko&b2=%;#ruPNwO-boq4+Igp@Cg6+4T&@>#|UDDS4{@&HFmJ)fx9zvvdfcMe@vRRa7 z`nFSL3DK5yJUBb|(=$?Vr2S8gSk0cGO|kUOtkev0ZTzd4`)sCQ&*-VVC$69y%Z304 z-Va}545vHi=TNCXh+<_2irjYFF+j9FGW;$_hSN5rF~A!+R7_NLdBh(rj&U<1DtXJ- zQO?ka0;u^s9{hztw05clpk1{b8Iej_j+~??{00ilQH+mJfM9EbgeNFH-H?nMmqz@V z8U+74I#!~U!<~?tX&eUxWQUJB&Vh^{8D?k896Daut8T(R9XvuwZsjh)oGE=sJ)1uwHkhvug{+2^ zV=CE1_Kgbb^73{9IONOt$JP76cURf!OX9+loi0536?skT&_>IdE{XPro9`tVjSc7HsY-<0m7 zH!}r$m|`<2^>yBoE;YsVdk?VMA0$=|OU=rQMk9qp0V;)`_NnNeWPum%Tj_#1_4Y(Z zHnf=rgLAxc9=6uhh>Fc0vr^nj={A5SAcLJVqN73c0aoMqoM%&~k&L4+Tiru`(eK@G z_z;aHbO5P10spG_VfL;O7SvX=b>!D*f?yO9ik}$Io=4xF;gRP|eEWm$bNq2iNVYwZ zu%A(+2={{+{EgoEL`;2Zcy^i(Lkk4L&fZaOg6&9pe%uOIJPOM9!!eB94Q)qF1)yhh z*B++v>@W^V?F><9AZ)V3R-ga-`^Gt}96BG;oC8+p`q^CbN>L2p%z#aJRrdel9xv7d zHx+bbtjNzB-9T~?>>oA#xu~5?-`&`tgJeb%ye}zp?JDhknTM9jD>8!A$g~AdD_cl( zB}IRP_QIorwyExQgmXG?9op{!i22CbAm6g~j+w+yslz} zU+b^m_t@tN0G95+Mai$t7uD4(Fr-ljep_61`~ND|e?ssQnDO!1e(TwjO9){9+_d~6 zDwwrh33rPAuEc8#vkymd9|MGlZLkc8cYrBk^?plLc><*D>QQfbIQbN0g0o+Xae$;Zf@vj`$11Ts zgF_|iIFtX@`pXnHo>=zqjakI0`g zNXaF%{HUX(A%lC0y@o^REKg*NHR-&V>ficJ%JS+Fe`VPTeFl_1Mn z;r_`Z7!_ncKG0HpO>tKTo+vPwp%SSAa&r*aQv$vOr3NNa3nj!KJ04zi6xhZJBaQ1*CBgOydCMJ1^hMemjZ=UE=GrQZFt0lu zv81|CE;oQ%eE~}VbejqX^BwFZgZ8K5pBB3^I17UEd zf|TRhN*H&zsjr^jWC5S9=fAck|IG0>+{X0>ETXZLN23+|#YmxE3m!tvhaa1jv(aAV zgL$KkpSfGHnX`CVvQ|2jJy!BrJ59z;4*q7^nhch={>@K3Y!_C{z$-jr#j3fPH;#{T zbnsLi+Cq#}fc0n}aWW8D7bjXrlrO6NY)e=#oRO9iu7}Us{slepbp|Gd!2QW?L;ixW z$Z)jIX;Q3PLC88$1tf*~XmX5v$)Y;m&Z zUfaOcQ^rVAlCmzfR=~X}{23D;0#b_g$aYHG~1G{9&A*dkvGdU*M9Fy zqOP@1-rET?$Hmm=BR|>(u+w~`oapUBczkK=6mJ&^_2w@=r5~! z_z14MoWES$Iw${I467vY%vxCY#lUxMG19rn zMf2_q*g9#$@@{0e*DPJlI7thXl^;x5&tU%*; z1P`#dk(mAERUjx5De78Rv%)3rNW@#IuSLRfJy_|4lBIg)CLiaEQTd~5k>a~^;}+o8 z^ZRw=COTC8+KSnWTcnKZ>W+?K%RN1WCGz{-tUxCQsF%3nI1tp3`(xVK8{z545Q^YF5u++@`z85O*O|Nh9H$E0l+R*Z7~Cu1fiJmnFcTs9^EGJts_p^j6stq{1wEp8za?zKBLl|^zLa4P2!|NU*F}cq z#g?ELB8`xRTT9nPh1J#8Mnr|>sq}svkmqUJ+YA|vE2%~hEo*E9fX0Vu0jmyow;8k0|`7LQ;q0YSFFi%Y*0;H##F0 z`|l2I&WDPZho~1y^Pu>f<@fFP$C{;+yrqGOc z*>k)PCvJL9UcHTQ02tzfl`frwv8>0s?X{C{KY<{$=vM zOro8Vy4fvhvbM?CuZodRyVy9AIvuy9pEgC<8&G<)OsV?ZInHr3p~D}VH% z*z6EkWu_!;t-seC!GxZL^}bsaL~K!$X;Wow?%X@ESUNXq^;XF4wVc7aY3RQ! zfmd$AVgDp4bV4fGb?4xzPJ!xu%ed<6@((}0XJf$2qT|N4*{NaEmzSzS#l~wxveBhC zs@MjLoOQ7u{xiz_u%Hr*6f6+L^(zs;HYEeN8f*1l> zL*@(+kdd99ToZS^#!X#(HMW1#sbSqS4-G0{@T$jIBH@=8L}Q+npToAi2AMtL_lg}F z&IZt6!W+=IZUb))?^PlH#29a2ivx)Z?FyM&XMKsrD5rHxZ2HiGax`PG!ae-aXk~L# z-n#RKd!YyAhwq{vgQWmYL`BRzS8MNaXWl)>UtVQ9sLDrQX2*UOEDC@7(!6Gk-EH8l zkax;yr*mwOV$_l|I5Kl6;i2YmWuhSdw%yx6v9YH3&7g(R{!C@YShs?aIUE{m_3qNjXn7=a4;LZ79x^py*Tk^_Xs63^`7s1Wu1+0%*7(BmvTUcJc zkvD|4oAvi(`YghzS5#v^1!X1wvhW&ZQs7cl8JJzP>wL+5jc5x4uKV7s4#0BYSGmGG z=*z6<5iJldq%Y-Ij_sl)lh)Ver-J*gI#HWW%{gQ9XFsqSTkEHv# z>p1WTaBntwve=MSoY_a*#cg^uWq5awzlPR3*V=UGw3xM@h3tq}Jd4Bsve4Rf?c+ns zSBWXD_GNB72iJKw@LYtBz>{6Ck-N=d$soR?L1xh5hg(+!-R^0T%M+7Frew%VLSOi1 z!o^tRm`XSe7bOjpr;hce74uU`D%Zcq(fh};zgT16ABb5T+h7KxI0A0n=FIHJP0n$I`=H*<)-z>xJf)xr`P zz7~;++MuEQ^O=413)v7DO@SlcxLe`Dwt&y;qjMORGj!ibtHhjpN(FC)zth z#*m%GYB(*1jY$~UF2;5(hmyq_!(~Ib?atTQo_tA$}JlxfM~h;u)tUP`|M5fBtTVka&d?l*NZ!Y0_JR~I{R2m#)`p{m&)cF9^S8;XL$k=|-4qxzOmWJ=D^Fjr=vM$kQF)_@`HJll4ajy2a7%V%A)x z>As@ldWO{Z&A3JcUOQi(RPi5-e_w51BZh0N(t^9ui(SV4YWmpa|M^nHE5Ad}-Mz(& ze7FUVI=N+Ov$&fZv!0_+jLi~U6L-N(-$8zZgUKb4+aQ*& zgCH@c=TFn8Qzr$x)zhsFj0tn|$iT_FXe)WIMjYw1hh&`8Z)V?|$#pVrF_AynW3gy* zHnbCYUO%Zl#|~kud8d1B-bDPGmyg3Hf?i-uJN(OCbTyURrd2yGpc~3DgT&Ef17Yi| zI^O0VUyVenZV}49?J(*oAK&pTRtt$9k*K~xztR8naN$|gSm46`Vp>FJpkB$cTvPhR zVTJSP$ltwK&1|HhuY&z|RZ-{cW=VZ_Ws@=S>putA8~oj*lz1vnhPnJ{g@QMy#rX$Z zVLp{bd>3A>F9&Ui%iZQqdS=#lxid^M{LMU7q?CAC+G->9Uk|HOr&L$6*R9=e3cC!( znuIT;vz46h=?8AjrEb10M6AOk(;f6Z-rV%@TSPLPyc)Oq;Cn=wiy;~v@`OXRlVBN^ zPt#(-BR6*|8W6ABUiZ1{rY$3t+vNQ#hvd@A5af~pe1ov)+?Dv%q19mraE$5DX!(jO zXo7rO;^(h)wm@RPwvMJRW)pgOOJx&iZ+fO?uJEM%p1e_(Njs4KkVb@9F?#jWM#>nm zYa%4gdgs{NyU~Ov1~Ls~@$L);VCO(_6|yjG{`y>ozdkcH$j0OSy;|u>SIeOz%*3d2 zsm!aqh$X0EQV^%f#X8ZxAS|tKD|eAY=jmH@X5}R&ZpO7Bo8Q-?y|KFkp8r)y++QPEqr)KUd**CvfIX(jC&{ z+r{-o1uS)!9-W)a6kD46<@G1Hv7oWkMJC(%PZ(YYyI_ftGbKic^ zFOx+My*Luh2+`1DPi39|aP&}G9cwMFTz8Cix9uL8Q3*hsWS92i<#du%0%|JMGGZ&v4^lwZ>9sOjm!g5mTt-rX=_* zWstBeb&Pm?GVk*-8^Dae$C=k5p43OLh!Is^*Go@Q?MqqjPEjX>cr7(u-A^ICE0QRr zW}Y>xwf^OIf~=GfK$517Wxww6c7p?D$F}W3Y{i9xs?_GRfGQtiXVy) z%Gk)sjK!UslSSUj#L?c#-rSj4!^+Oo-pxtW)5Xz@S;o%U%+b!smRZHc&e`g_**7ys zS2IUuQ(IfoJX|Q+94x5+-?irh2T_%rxm-oCH@DbbUCtZ_B(a{J#`OU)C>em{q5(gD zela(M-EI34L%K}JnwO<@`{(HopM~VyjbP`^pKZart&8JF{qC$~9sw`kZnurvo3^s@ zvi7nz{tn;uUGvkqwX`CSscvXE&NJf3R~}WHr|$V91G_t)))k^umWFnk-5Q(~dHotz z{d&RAnI!4;4d&+=W@C8_Hc^=xm;y#xk10 z2EF5SzrwvgxcEyGl%sb=3Ok(%u2h=kz(*%V`ku21Y6nASUcM_my%rUa6b_}#=xIy{ zcu+kPU1g@vAs!#s)$$hEFcPOnWc^sqIq$iZZl>B)x_z&z^^nb@HEEI>{pE4iyiZ`x zU>;+MGI}u6p?%@T(ZKQC+8{@_xy{wT!SvSbd#qNCV(t0dbXfiG=uX48b2}aXAwK%e zq@VA}K=E4m=HIc$=6bFDV6ngAh|&{wPu2j7xMe?(V(6S?>6qq5~$ zp_4iuu9xUc!Ta1IpQ_)@c57~LWSjbqlhC`KuQNAKuo?p`f8*cT-ex6n+QxK4A0F8* zlDa#18(#$E@1Ckf8cw79>rq^SV?Cg&TKxZUTaa=rSe>5}pYdvUCC7dp?Sp~GL&+0C z7R3ZFa{9dd4ynT>*Rc!0$rHIEzdcmdz;y8D3(S?E)*$37BSy|0YSUQP0c^xz>-@qU zh)_$QlocEfEBn%Wg5tuJ2qml?{?ATQlD^vJ!Z9@V>5gCZpP^edH}o61lvD?y8N$)I z`CbZOeO?zqL_P+bmyQ{}@NlB0ly6OY?@QE6afPofshxty97`0@1sms*sXHG$?HU6} z>??HX6VAtzfC#J*8yzERmVGYFOI5PvQC0v)n~OTqbH%pftyGWAp29L9JLGGVU(D|k zfqNi=Ol#;uLHAx_FC51!vy{F^5_fxpj{Jdy6d!kXE!vInwR4>xd3CBJ0sHzxfFfOswGC8RL z#uQ@Tx+qib61ORuHvP6z8}XUwA4910EY;0eR_lXUOZ$?e>4H4f@|LEvT7($nHGF#f ze&N3HM=Ypp;T{^y$4?Gq@UAbvtE%$&JMEx&AgG)M`_{j^e>3|UC(A*|g?3Fb3-aE6 zmUF{E1;5tuf%#0?z@K4EIl$a7d#qp-m_2qdGt3?vm>6b{11t=Ki}Z2G3xLK_0>=OX zu#|?Og0YnPp(L@;j3H<+SR7zBm;_cZ0!#usm<}d^4U7kqzyaoiQDp_gz^Jl=sbEyu zz}SEo_nu#BYr3*GYW3dpSW10RTv$_4fE8u17p$cspb@Dj#nl`#frVxcVTExvf-qw# z4MDkJp&3EoVdgl%LNJ`H;K0^!_~}Hlwwa7|+?@1;dI53gVm>ccFe;seV#tw<)4ef7 zA8RTd;F&I?g@f^e+qiT9;It=6YDR^*HG_0vO+^EqmBAFyoGM^H*ds*%G%iF2Zx{-i zZi^I__a_jRt%nqZ`v)qJ&JZ3NDHoE9#F_v^F^7D#aiNj&A=^l-89*u49(WM$2owdK zAr|znJjgT>YZ`EnwFeiJ@&_uO&JYAG7i-IxNLDnHAK@(DiWe=d$Q}%x#%$Z1mNrIk-ww?cozR}HfpqV)i2*WgMe~QjM7}&Ew zc+vui?2nIa6}Rw7L4Ihrc*xBOf_Sq4QN@raB-U);XVxAdNOKqpkQJS}1IZyv!c$m0L(xgU2MR~2Cm6{gSHcrod=2chF$~3{(j$-L5HI1$AihRVW@qwq zl{P|zy@!Nu%N4dI6L@Y25un{tfNhBfo*P5jX}9cPThf8&Mi4LBEq&OQWZ=08E6-S)@x0n2tYC zEV3Q?Mn5$yCp7T3)Ijc$0R4Q(BHoq@$UP9Skptnu+mZ*lM*ueRAkBDN-$Cx7fQ?*; z8{U>4$UPdc5noo5Om;t$alz5^qB7xwR2zNp3IPbmIQkBwk<4U}u=Pl*Oo(vwXIo7~ z<87JH9Y!NvQH(z+!amZ#y!JzhDED;ZZW&-*azMYz0lHaxSg>Q6!a%r(g;8uEonNSj*c`G;7CiF3~;0)jRsuPl4b+0>3R&I0)Zgh90)J~ z39SGk21{E2A%~^SgP=hN(dMK8!s&8?0AFcy5&&Q6a()3uX>&3Fqg06MtP(KeS|d=2 zDiib}C3$@1csbgmT776-7>Qxuxfck;nUnO^Mdv_bksu`hjzQ5O*mbad*y2XtJ&+pz>~FL6 z%wP+Dnq1>u>YNE3+{{&SZ8N+_vS85JK-AUxIoE1fWqd&vfFos{6C?4$n%rF(9} zZqy9HEC)H3$}JBS7VH^5 zj1r2qN)%-j7G+S;Iw9;EYt_@VQjR-9&DauKx^gd8q@F8$6ihwgDWb}T;i2O=U&gQ2 zF>w=dCn>w?DvmW?W`JB>%5MrP-xM$sM8#T_7AE%XN|Oj7)>`n5f?u`9F6J=0F)<>3 z_QTZm(-F&%!;yxO#qfT!iVihv3zc`K0`rJ#%@9^=m+R}#sHn{Rt^4r1Bp?UW{Zg7p zraLUBJ476H6yuXG>QI*V$j_-DO&D6$E=;>75Y>{QEgt>MrLthx8TSXsjZGzAHPuNw=Q4_N_!JYWqKEM}| z#++=ruhB$1$tGy?^`Y>t=3VdJ3!URDAtT<7BXeW|IOldlZy$auxap~RnPW>o&q)WSiIL2`V`@_fol_f!deW}`0Fqb>n;B)Nq2--Ppvyrq=5 zF-FPQ%_yb+H^v*nzG3P$7S}#qfFo2cp(#UU+BKdiUyKql<+uA$wf~I2FB;^SbLz3U z_m#LGFdPW$4~MMeIaO>OmJJFE4D0{Ld~c_>c%NrbU4*w0lA){Exw(IjcC2eJE?|Gl zimcz#jpV$y{>Xb<+AKmOu ziCzUb?h*cFV!Z&~qar4T4xu;)B8Po?xw{Hvx$#Z)Q1esPZR=a8rr8kZ^Xq^Y_g= z`9p;B>JAI>H&Bu~1mCnxCSMrub>4JBm!O=S|71kIPoNv+ zC;g?=(SnzjL>4YUO5lprnPF8b{w7*=sS1CcbrhR}UQf;Tdmnp@b=r!MFcSrMmyFz1 zkKmMUz5lsALM`+Nm;^N%%Kb0jHaLf9FOLTJlPu;7=qA6>W=)Tq=Qqp_0Q%20Kredybv+M+^#>9m^Ee98b%z z#Fljqn=vrf%rr39P_J)TDrA(qE|Rf5H#{D(LlFahIgn2Z1^y3=zuzIy>6b1V{20Cz zGe(Nd9zLI|zYE<-1dAcqNjzSXg zDM;ujHivnxPe*CxnH?N*)ksZI@k0PWMDUh6^AsxxOv*@u3-iU$U)d1X)nDk_0*-;B z(owm_=-Q)LP=Jn>qnR!l9dsRBpcGnyGW@7}Dg%WjRsg%<-3YD3C@m)_GDi<@e+1^A z)_*)pN}?7ZGVp z>l>zKFd&71MWU|r3q$o4Bfp=v38$OAwMUlHKSoH?Iw7Ek9qmzYQKM8D7HA|hLMsj& z`^BEGx{N@L+44U?V|2o=QDPq)OdE*|*;P`@-P z;m@^1ed-d4NPri?D!JkA$yJ$nmHX|DW{yIC zDls<~rdo|jXG=3u%;H-2dAgWOcwGbQd*Vp^C+EihZk3+ndoaj;@kt#ScUDcE|3N!-QE{Sn1<$CpP&u-K6dO-*VH;OL>t`;pIpg}Nds;xJ1b7G@ zP6Uat<2Sww3e2r0x=YpPgk6|@^m}U0mN^OeuUU*B$9O}YgvVRl)7d`vK#w-ndBY}c z=x0mGK(f2P5}-x8eXa#!tEyV!YF!h(7|Tem=E7^|@8fA}v7bfOE$(K;3%M5lE^sYm zYudFLI(?bpQkUjG%PLYhq;=tMo{4PRxj+vjnd3)MgXIkTd{9bWVX%=^8apSOEU061XCR|9M{dX)>JAh)z}`ZC^IFP@g_eo$Pp>$YEEq zvz(q+OA$;&F^msW)(j(gI}?WWVXy!f!kq=Bha$W`*=_2J% zK6$ZEq_)BZzS+8%!tuQVa_MR@m&5@omqbxJQLI(Nw=qV0i<@mf-mCmk&bK3q$e}cn z)gMPgY1R!-VUV<;;%wmK7xelVdfb6cC@$&#ihJN)E4JBjaW6{*<`dQ5KpU$~o5kId z`^pHI{mSY5_9Tr%A$dGR!btzGvklv_znS^+B&vt0fa~1(*9i{m&)PrNV+S>@n8KzT z8!4rvt;75t%BcPcl_Whr1Zf*57dBeAS5!AP($zRwkqfw8fOi$)xVm$R5?)6!u1+M! z4o^xBESzoEyRazaS2L>{)`RI+Mc+m-=cDJ!lNM(6yQTM^(G5x-yDx)(WZJg*4uw^{ zSsi<}Of_0@*%d&17sAA)5s#`fB`O3yNi$7XM@jyLU#`xZ`HT`Rca9XSL=c-(=9Tfz29*fi~lh=6Q^vQl{Q} z#rX!+iSUJr`P12@xJB6t&Lk?9E_?rkAJ$_RtXZPnXWH~OS~kwlT~mM4e~)&g4b?lMs)XmB&&pUolI$A5tpXFsAAyNqpH= z2~dzhB*ne4231Q00gEGIV&+7lS@b#kK+m-Qc9Lq;hzLj4fJ}-U8yM$YNETTR4Z;zu z^4NGolFqRN6A$3oa+^Z~G+G(3i3x1e1HV(}2*~fw!iQ!t_J zw_11{#Zr#imHaDbZ~7U&WTg6YA)Eb}f>Q;%v{qj0eQkH&wP~SNR(`@hpSD_-MP>p` zjJXGO`1K#`h0FrReJsFt43D8$_hzJ_UM8The^0VDx1e}umgBCL;`Z8M)KSCjcu9x>#B@F7? zEZBoru*NERwPIodwvqB7H=PXv0fLzjPG zQ7*)`ZX8Op^ZZCAa%#yH;1Z`spwA_>XY;v>+YSE!Y<(^k!;;X5ABR<~C@j0%JJp?FGb^ z-Vn+D@5zxmT`tj|*MIZM)dt5poItM`@{sQ|4GmWIv;iW{6;G>|vMq@#j~%QB1m*v9 zZ=V!v3%CCvP~SdT<2bLT5baQ3 zGNAeQ5Z>p%l6tMT>hpKErY>(vRW=PaZEcweavN}U9f&hY&Ge}qK6M>9Gf59N>>d|m z*8%G@i8zi_vCSGuJYSNM>#FrHhBXXe4aVbrTs(Oqs*4z3l%(qnfXh#Hrx9(1iwf6q zf1f0^CMOHNFQ&&mO?%aSL^vls$bEcl<+a4C&DXh*LZ=I=i80}OYoV8C(^^7B)y1&O z8|_(}?^a3Gq`02Aqn`Brm+JA1y)XApr0o((K0492w;hbBS=otq8PgnkBpZox8>@94 zD-HYm)DZ}i!`J4;OcxQRcV4ndZt^SF%wMT5=(IL)>N*m9?r5dEo;e?_6Hm*^$KwD2s(G4XSyd_jm=7ftf{l6`BsdGY0bm$W^f@g+m}ZzG;PJAnxO>SMg{-xc1z z{er4!Q9Xe%7p~_bjm6#g#%$@mHihGKyB80()Q(V751Nr{m4&mDsMjOKoK=3U=Jw~J z!#)$D5no(WY13uJLaRla_`grgT9aMAe^>4jO|Q?B_9bVM++^839!9Utiyh6^2orPMd;T@oc zo}r79ou=N~qK_0Yo5sInVxo8{?<^W3&bOm9-jWT!rU*Q-Xn(B@`{P4@qrM%Q?9ZmgHM~H95vp?F@C12M1Ts}+MVRhrY>{%reOJ&*llCv} zA<(DF0qbQhat$TeJ_a&)^D_s-KEMQ^ItRVn@WVd4Nld;3mUn?Wk03gRs3r>DT%*hA z**|bW)xDFK>tHsYkc)?}M;zYLN?)_L1-jUukv6XrXDuGHssn`kczhCX@w!gR^Clfo zj9sYZdqREZ0cj8xtFn4apzu@q#9-K4@4S+!wqqwLMaO4VVR6C}`0V;4{8j`wVRD4 zJIQI>#l2>oF(__|CbI`4(dDx3(MR^9m1|5o?9Ert;0CNn*8VXnqd=*ior*2d+e1}p zi1-2L>vk5fROht1dcEINw~uJGdR_RAu5-LnOA8ycx{);L&xGit6bTB{UvmCtu2C?# zkD6^XZ`3CchUK23EgipE*)Xc(<)bsU^pjVK^2oDw9E8^X%RatsFK@<^9?$UJO z+1r`SWwSAcfKq)kOq5kr+8ZXL1EuA?EY^6}_UWcpI?Yvk)!Fw;&9N&le+rIQI+@q3 z!=HWmO#K)0?_5^`B+Qj|UOK}4yF6^PWy)>n9UB#5gev%jG1J6igKr}g4GLVRHr{$s zQyQb_&zA-0ZPWM)t7GWT>V$F@`1*T+&`jRhFw{l@o8%%>Z|DkLUTE_`WpdOYOYbf! z{OszeK~MkcLdy&%h~#cinaKpet=FDzdJE-}vTNE88h_>GIB-~;J0P+LkvliE?Kl51 z=Vjq<10{cx&3ut74pF^yvcQ2v*mS+HNr~F4lv&&9BP3PZn=x}UvyLY6^@ts;+J zJ4+!T)4^PcTX`hrJYuYzG?l-mu&(M4NGzqt)!Os3|9VnC;cd zVRv;dAT=SKc2&`EDYve$-DnrKq_o_Do&oERU1q6MNvV?#``x!N`Ajp@bm6YSBIcZ- zMf_#MV_Vj{h_yLsEjgcrl{r3`*3y&}6}6BeNmy-6 zwPLcrRAvGAnz@g|j=YbJSXkO1kWUDMbG>A4`aFnO-NhItno%x60U*0@> zAYugI+-Qg34I||vBI{sRrlX{AF($Jd&_M7{+*r=nO#26rYw^Dgp%0#+HEQ7Y7XqCG zD8g#Jw12HLV4be>n>^$Wp0CE$*6Sifu8$pk=eI*AATYq2LS!{O-7q{2ZK=&}!hNx7 ztbM_{l^{0&!XIm00if)|NK4 zf4x<%EWzO*$^JhEk+@-ka{HJ-MChO>+e|TO<=`kgncQS5^&@zbg1>{@9}E@_ zz<+2^Iza4$!DI11pnbY>F=^~y3jcTN?1&-pgcNUIc$X_WAl*H%W$1jvxFIxVo6ODK zT3SdwWVO!vVfFZuJE%Fk55FY%I2t7mfIh%OJZPoh@)M~r)TKYDP4G{H!`VUGMXQ>k zh^KY#kj%vt>+SoP$YH9v(hUVu`(fDpy}WDAm~iT}U2&$s4}FCOirF86&P=Z!6s-NS zH60}AL5&Ii^jJ8?9c)<)x9OCiOjG5fJtc>)Cs_Q6^tZ!FSkK#;nv(by7A{ryY)f1Yx z6sRO;h%9U{zn7QzuY0<*%}#9g0v$&r@i!jtQDV%A%qvmB>&CpHTO3pVXldV4v?6AX zHY6+D?%IxdELeHEa?QIj>j=#UU*@ESw{c(jla>4L@A{T6^JFWJJRWLiu6g;c?TL-6 z+xjzhm2&F5#&wxZtAlUE{RO%kFYT0l(;Ei3WKwQ3uxsuDHDxhlPVM>E8OU<;is_3i0K?WXfA`q+hDLx8dJA zV@bb5v<}FUvc+(eGFj@q*U-nlUpf;Rc|e<|Mr&q8XyH4W@d%Wi%BMv7Fa7GX1(|YV z64tiD)YE}&o&QkNYFwg8W3QnoHphYfq1Pjcy@dXdaM_*+>HVBk4-q!D&@!f5CQ6Yf z!-tdLD35UECbZtZLPxu;zd15wS(5WC>z8^^tJ2zAz3JkukotKSJlGv zw*@GS6k%t$8!oW-W8ky&Zur5bwQj6w?x!~Ad9g4T-Pj#58Jj`uvc$L}YFrJu(5pu% z+2E+Y3Hxd#GHw)av(M{taJ%lBjuWgmH9^HH#7Tnx>}P8}U4%&xg)CH_4N+P2v=k(u z$O_M@Zt}ium23)TKG9|=EHz2$A6c^3gnW<4fG(Z^}0-W7NMQy4z&k)Ts_D50Te4n12t3wBgwz6&@nb z6HHFol195=xnx_c8hY`KZT98!-EN2;r?<_kf1zl276$71VLoL|2F-K7oUK~gZsec6 zxzcADn9YFI_f(jw@W!dFbl6qnImh>dM#yaAxakAsW-3e? zsltY=&8tI`4X0~ORXL-^=Pzlpn_5@Iq+QZ`4y?U6*);_Eg{97IEL3brC=@9R(m8>p;ji_2GTz25(w;ly^y@-GF>g7e^LbS1*y-Wz`=>}9h5s#m>8 zs0{4H+N5hXuPOE{B_x{o97`{iB2KDUD5%ZBLSB2J;o0Q#OJ`1flVn2i<)tt9{o5wV zy|tIl#OtJ=-;(@slmO&H5tF3fCHayFAd-L9C4$rvhpgJB)h7<;k>l9C^U{|XMiEsg z7Gx&<@(}uPH9cu6JDXi$_e|&Gw`A?2bLfF4;Mv^SJ#JIJ^uuF@zOc=%EU(S3F0TzmL{{Tf&EJa1VmXWN9i|_>M6+51 z*(nn%kG;+duo>0LM*If(GtLE4iBA%dayMc40N1?16GOBUD4^3*3RB^JTh2+AID8~Kw4C+wTvMnlS7YYRPZ??M#y4r$)Rm|P)+_%wua#8Q)w|i$|3lJMMzz&7>jDJ| z6o=waoVG}D8oUH|cXxN!LUAkZ8YIQtwYU@9U4y&B&3nH;lR2|Tc1}*#N}iG39=Vbw zye6u}`BLpH>rR;-Q*{@Q%YNW3d1Tdvv~S-^{9(ZEnQYfDx&uUNYv_qTdDl>DW9}-y zph|wyy{@uW1mRAaW6!;XD}4OOfLob$J`>qq5yjYb_O(39&t)8p>1~(>_6GR>&i5XE zx^bW5-&|N8!t=gz@k!v10o_z!0Vl%nDjaieF=ekUE8_)V=Ob*P7ps|1VW2aYnv)Uh zXiNY&n(DG$EgT&Ak0v)Rz2@?|5pT;xf~1c%Ly-s;YhjADl}4*`>IKV>!z;Gvx6z|6 z3$~)D$E)}yo>}ed0qg?A%N^?sR+~|=;V~g9!AzMKj(3A^5$pol;#>#ow_FV0W25a= zW1_RtC_~c>iLRID<{`zjeq^>W!spdm9I@}ULBYQ+jZsT62p@S#7=m=4(zdXOSGpOJ zqV^ROtjdf~%Ge#k@6C`vzb)rwPo~QIYAh+V`pBH0AW_l zvN~~nBn%#fgFQ4IlQP~KIZD~#hc*_^=Fu3@^Hc1sE*1g`=+$G+J&aWDu+0>tgkroi|q?4gDrtH z^8jBV)_fo~bpg+GdyuEkbT_&APo}E?Vkh#B7&r1@RPsqVqXujdQCo(^sN0HsG8%f<;AT`OAC#1xYWH?0ECEA%P+sX zB^IZaZyWR=B-+{4jf??^cKf!i(_LAN2 zeDr=_#vGT_2hcgLXQ5NMvU^l!eO_Dt=V9YiP5!2p)bnem2OfG|)qLZ`0iL_l>)U}* z6|yP$WptkH83}m@a$(}hO?%qO4Vg`&b!3JM`+ZtI+J%_@5#1_j3P`qPVQj^x)gFGj zLLtq~Bfew3L$a~Gjsk>xJiwD%KSsBzNHlcYQP*gva!7OL>ltmY-0V}gn8i#{?oyn{ zbx2p%KwIQlCmlCI2D?3X_Rj0PG$J=@E}&YE_XCNd{w7)bcj-_-Vrf=&Ap3B>U^Vl# zmni{YT9Y7R_0D`Qc)Z$Q{e%(ty7cqRvv~N;-g;zm&gSCOane>pF#5-*PTe~7-#)|$ z1nFX(=FaaNb}Jbxo|Bf6$ZQ(;P6HmM3ERXm8@w^Cz4c$zYO`4R)v-xq9q~vzAsP-c z21;jyeUD>u`xj+mRts5qhW@i+7sq7<7iIm#6M&J6V|4O~rD#@O;a1kef!g1*$v!6E zF5@oI?SQ76d1mib-Dw_y+0~w;P+P92&EsiF3f49e# zIR7Z;|iZWu0Y04>Pua?x0TySVacD{;TEXnpeI&?b zG-c1q&Nj8e(s*f2J|!?mjX**Cn z^OhLmu4Yd)O_eXzy#!FxjS;Wbt&Wugc%ic5GIH|=ekYx+D(2$5yi0nWVj%CjO2;n~ zF^^ahT6}DVS^c-B6emjAWH)KlTt}P@)U6AJe7sh%)LbN-ZfFKi-HsDFj&-7LCjPM5#!YeQz5=!yn z_OymD*oU zLFN2~HS`s^17utJ!a6{=NU=SdI#6FFXjV9!+Bx#VYA{m$_Up`Ic{sUts$usSh9G*? z)he_J91A*R2YO~d7CO;K*Ty|z59uQaWd5`68j>_?9$zuCLaSXlc{}u2y|3~a?NM8j zD|4Rdq{{;Ny)*8-D2tP6ly}sZkm|r3#58AmzgHX^%h|fOZLG~JXlw7E;-Q&c6m9MO z#z#0IkKO|2RA=SWIkB+dPQ=8-ZR(vsO_6veW;ONa`Ko>y%G^Aq^r)r5K>^Z{I{T75 zb+`X4CVeP*DjBS5)9LzUwTh*%*hAjRI(h14N(qoir4`7ydau@C)wGc5B6}!e!E9;+ zx7B8YgH}$uCOy3AyP?nxzgb{|^P!wHs`tzfE3~~UFQS}_a4|kMb7N3^ZS3ECc}SpU z`Bj_^l=_FIP8IR@nnZ#!q<07c@v{+VYPD!iN|)HM?>cvxn01%99p)cI!ct!hn)-8Z zgPdEN8&grCnh7`YTOzD?PdgzSfpc>U^f^ld65F4qb*SY%BQ2Q?x&%DSoBB99yCjAL zl7FUFutvMRdwS14RFgO>;7(gVv22hdXCn*67t~Csak`gQ!mx)6{jU9IX|otjX->f0 zZc6~U+5=Z(=3*9H?KdRt=eR=~?B{c33mfm9m4c_l@IlK4`)H1bKvPX}B(>pJb9_1fwEFOifW4bL~D58rcF zx71cTHIx+6#V>0KJ4$YaG$ipj4fF8|1otsak_q>wm~zW)fL@#qjr+KXpbm& z@v|+_4)Inx`1@)Y!3oNe?-;G+ohfW@y@*S;6oJ}4+Mrbol~%IpCZ@7>#nLvWGJXT0 z*7|bTrHJsr|Dv>1S=dijoFvXVvt`;N{wy0sQKx@ypaYA>NxaFuiIB>9F~xaBH|X1d!M41EiK!zKO}q-2mL(8R#(y&wR`{X97PPg%C4=Ixtyh2#H)hP(;Y6K&LLOGkI)Q@^m86Ns2k|38CMKTt)xn z^$&qNXIW=Fh+H{Xp5GJIj~ak`OlO!ft@5MNyYXFrM|ph@%A*?sYkU!rO;$`vVxPey zQvD~*qbjDW)TA6}3%fblZN|Bq=_j5n5$LY4zy3v_^R~|H*S31mp8Do+T=}UwLKGf*PDc%$K*2 zVng=_!Gg{u&ZaY;$g3w36nUGMGg&}I4w?jmVAeJ!eG6wB@-XHaMCVf*f)Oy1T)nhd z`Tlmaw8;#X-al#68G|(gmfB#cHB#mjMfJ;$OH?A)AMTKErYi0gJ*y2C%H0a;L*Rra z1RW;OlDiq$+C+u*4lFnbX7QMJE00jVN#rg6W&YS1puT)MsQH zE-2k08KyIz?RK?oXm@IE2f-*hB#pyh*S4$nu_APG&?^Hdd$*`fSL|dL%xjZZgDbN7 z1yr%`xXqkVd*QXp1bQ7B2)!EwV|tpjs*CXtwBHF3)k7u}?nb~)dQr$W?Fba_1uPPh z`V=sSz|C#G{EQ&EAw#g>5IDud*`s$Zxp|q-3a!cqc%5o%GLC=KG=}-Wu!}-eALKog zz-GmEMwT6~DCl6z#{{Cg*gKD68o$au(9|~B&b$1v+?4XPdDXx(!TAa^Prf(2H**Ao@lo5~t( z`ZlmPY_;!8Ou_CpxbIKf&z6W8=bydVN|4WMj)E5|crHY<$z z{?G#M?u4b`tFx^S6)2qtTFGVwN1^KX74+%S%a;zs zyjgx}&juA3KR@GY+#Gv$)(+aeeGIj|9~1wgztCbMP<}tf^=WrHqS9ohcm=K_S@G%q z-5v?i4HC;{BO8?N^lE)^iLLliPwZw_1@;MxorVeygH3g=-Vzn@NpBLy;5;NAQkV`d zs?*{z4g8W6jXjgzm_Sr*OlOUXjspS)&Ri7?O$cLw!yB95M8udj;pS*T zMdy1P$%@82N#bJdefYacinSgo=vMG)QblH@Ip3&Zvj|zJrDO8b6XJl9Q(M%IF z?!Jg}d0+es#VV;7#uvb(g${4|J6ZxB!@Ds9voR+X?fBSeaQ~vco0_k6N-Sz#Q6$(o zI@J3?T$t}Db^Ya;iYj%tG;GBzKM4o&=RJ^|9fE=bK|~2_Gt0-N%}2(?IyB2qpvkw# z!Fm`4(n|xezNrBH*dbqVAZ71?X=eG#wD}1*Scs!QSsX|fN?6S(uvijELH~J}3zt(G z_+3&Ndp9*)O%e!G+D#9aO9^9^7fLjz(_+H*O$lIFm#Gt@3UrK%7=)djl@vxUC!}IP zr$ui)QA&rJ9zOmjj2H(CKRtX-8hC|^g`XDAB?087`-}=>hEKl0DORUhBmm!^eNq9^ zn&q?8=6}P*N=gssk_JxDe*VgiYa6$nEibELN4NBq`|dpu-z?u22SSY!_H_)ny!+uu z9al9i+)V;Vf{Ue^5$+}hw5R=C!it+ki`^Y2COR`NT zek5(aJPy_@ESx0pJEl6e=qNBn0=NtlWrQ;)Wq8BqBe6qFaUhr|VJ+$5%qd|8z+x(> z8C}ays`S(VaBJFuRJesMd_K8Z{wfZH9VN^wJ-i}5%)kjm1vRB>(V_y-!YSIbLpYr- zaIkJzabJX~0$ok<74_L6^*9htl(5IN@QQ>m0a>9L3%Zsy851&(?XyN^2kRvdS#}-S zJ_pk^uf!<*um!~Hh0%+!H}3;X(z~dsP9d-T_t}2<{QV82@`Jb`X_M%?rc!_?7sPg7=qKD4Km)BQ+Vkm~DwI_|s z9Es&AV#tlx4*7J$$&D!@uI2yu*&xYxhLRg+m|tGoT@zaSCvL#5aw1(SH5p!R8M9xB zrwB;LroAVPk5d=GKB`^x~K^gQncaHxCIuw?ArRcVO}Nn~m)r;!Yad zTsrc#zvu6d*t>8+@QOOYJ*1#)-}A`sAb_ci?jI6*MZJ8UA|uGXc181ew3V399h`23 znRQWRuT_0`c4n2o6OXMf7G0`+UuduQZ(3f+t4Arj<0F6n9?SOOG{m@!Zg@KSfb}+6 zVxC$2P&@hR+We1RTVOGZF5D~D_F+BiqfD{_Wjisr<%a=%g{D z7nOXDC)L3lO}1VLxiNCi=rp@L(kqp&6RMQHE2?Y)(!z%G;n=xQyb}qNVguw(ev{9U zg#YtYQ#6L)?2?#yIENi*KMY3f|KryG<8;%@Y+d3dwz<3tVdU`_jA(hK*GJ#tSgwc- z{HJy$O56zHq>5fXV2R1XG)jgaxhqZ%dxmuuV6?{I-a|G<;=Yb%rSekVk?<5c)QK zILE>F4(Wn!x(g;MbU>v3x2X-|i$yAQu5kU&QyT~u)1t&aTz&--K`~pHksJp+eytKB z8R3`&mKF&Yc2wxBl;n7p7Rnb8Ds)>a0p)^jvx`K#RAHZK7Z`T_Y`4g*dAd- z7vogu0-ri{3i8JK=~JPhMi$S`-IzX~UsJn8GNLB%EyFA?jN*`TBGy@^u-LZ+;zGDc z^cknHuC``ju9-XJ3i4zJK(K)PuUQNfy&E3MFuT|RQDP$}z6l!4zFrTOxDY}T*gX%6 zyYPdV@c6|@h)-Sf&PdlpElx(gpZpkcD4W1wSVWSE}4ag{sjGKL=Y-?P~dAu!>(r zj;bM#Se61mrww-m3b;}2di-J#jjG{~XcGX>r2xk(0Y_30fZovka}bE74Q)d)ii~N+ z@%Di@4%Q41l7+f?XF@Libdy`VtlTVaN5_a%@b4Y)Bra{o#I!PaA444Hjba4>r%K1H z5(B!e{1}H#k#z%9WbXL49tGRX5b^|<71hP<_?T7?Z<{H{d6QUq0D1g^abirXn0Mxs zV~RzrDuBFYaXaZhccW9Vp}pjdE`0B62AIj*lWy+|w<#m}Lk>N_ma)bF@_&oQX)&Q% zw;n~?l==KchaLyUvDN@`oCV{Im{7p&Jxmk|p;Nc_FmWV564V215*q{{H(EB%iwQlw^#E^EmhjU-JuFOOBLU=F z%f_IXP}l?_n7D>t4C=vPADaLm4_r1bj0tVI_4vE}C6M0?Ce~H|5EM@Mt~_4xlWQ3imJmvgJFFAiXvQ4qA|j z9TGN~dGk?09uEEEq!64gQEq8(DT#;+=tnENkUQ!@_d9-uTzZ7-f&jgblhQ^4QIsK& z%pM|xrbOrWB2l?NU|rM_sDyp*Kr~a3kF4o?q&@G93o=8$_fm4~=Y4cwK#VdCsK#?3 zL?9J|+a@$1MT{~JxWN1V3yw}=3)4KT$8tRUe(!sjzF!0cR=6z2OJ9K@LNz9Q-gx_$|uf>HQ*s8?o^PgBhG-CWc@?`Yx%oe zt!%h@KA`3ZlU2C(@7^2W7GZPQUCE7eWo}#Yfq9+G!(Xkv;=oG)m2;wureBB>9dfI> z-DfuO;Y5T9g<(<#25y`*YLnqZtKq{yC)_+zW@WCwUozhBru}xRvKhN7@Irl8vu9Sd zhgHaV2c|v6#%aU~@7bvl$S?8%D%jB`ikJ?|&m`u27`FX=X^>Xq(Hf(Gbs-Jxg`j>~|f2jPy5C|joY(6|5Z2g;4%tVcsIzU?2+!#F8|S1HV(%?45fq&2Gp z2a(u3620CN{(tC}42H=6 z7=_&*u%dT4ImkmuMmBzHp|e8Fa{UMX^);ax-BHb>0n^XXZ+}Vf-QvCKMzK_50{8mY zx;xp8b2io`t0~UU7E-w>{6YsJF3!3%-oM>OkcInGS1;Z-a&b|-CAY3b)}ZNZN-9jl zdL3MQUD5yvu}Kg97jbcr7oEwJfeYcqPi zz|R^gNxLrW)L~3dNDx|gx|HTa=TCnt-e@;+mb~_iS=pf(HSO_*#HC}(sX0#}HT<~v z8!dMv@ZE7$5Z~2b)Z=OW9bjbdq`;;!cYTN{$u?-Z#<#6oi|hV2J9$ea6+501oA};t z=Ufn%$7N*gK)>mfnnblF^bAp^g<`Jel&pULD05Ceic9jv4)4ZWk;q?9t=^m?Zmy_K zrN}xf`R}@zb6Oi@-(y6#WM;D>`V(1y=NqY_O>)H5OESo|LZX^SO3K7p*afv(*owBOsHSM4(1!)>p7sVr8Hn*mayJ1 zf$)9TQh2HeW$0q>(3+d`0TX;gih9N7s7%N8uY|`kSFM~FC0}v^QIEc{r;wCM;}^b5 zZ}^4wjwO6=WfMf6Y-sSH3d>Z^p04=StLkuT%uaB)1>0h7XnmI_C$c?xdL zBP}O7mYFLWy6(iKV-Pa+gSZogYnl&7yu2@aHH(|z^j>64e?4#J-2ON_?xRuk05q~P z^NUY4|3*KG{_{_8UQoa%+r3FScmPnShde2Ciz(|W_0_;dEAmEMu!9QOJFoCfvUO$~((Lms#t5I|vqUYQZ&p6!PjhkoT zv2}H!LN^ai8~!J6#;JX@!}5|N$Pkn`;iyHn!g}~}k1kPNhg6Spq*cJyvo>K!n|Z{W z*;c#4*<^%a;qv2RvVNiEh~*HpMW(_UlI-HjOP_Yen6w)$qrFBn1Z@N+yZ>CeY@jJ! zH_}{-wjAMQ(R}$dbg3tyt>?_upQbQx8C*w8l{v$Vx$5t*^uuu#R> z-q6IQsY@{E$`3o$cK9-XXorktBqOPz4ORx8!7`$q($JPPv@@2pyK0+MZ0)EU^Z>MS zH#SInw)==hzaFg^{oY)Cs#W{Z^v^OU4)#J78P+Ek?3P&fj6WSKSq~DjIpd!oD{z>+Aj2i ziDAG~A;skFU|ut_Jv&AEh;lO0e2KK62jxLtvqFT$FLBq6D|qoG+W)NQO*8*!v^psF zsg=4>-yX5W>@VqBK~9zG-L#!``_&{{VFr2s8L%?X{+iHeZ9vHJ4;o?SqMc)2VRtN2 zZN0f2VUD>faMAFzW^UzCo?=dntMV0{pYD=8};w z6L5`(r&aYtC8a^!JWzn2%d|E*vMIO%Ltqv=A!p@!FFWUe$&8vwCI&tt+l_AaHfGzL zyS;n=lUGt&JzDx^8`|TntUX%>W_!tvSRE(xad+bclU+vsH|@C) z-9>xXw*qmJK%HFbOI7y)p|_X=Pk)EmMhPZ_u1~W+E@m05#h)u!@brRmHhuMBHRSGo zwAVyyPf1he9(U?uIh!x~KVZTDe3%eH4JIVe5QS+P{8vIQ-3@&w+m+D`WlRs451L)% zsTOP^j*yYAATaqoA2@CvHlI;76WRYeJ%_o_6y)E0pf8~N$OL?gIK*+FWvo{XhDIDo zL8Xp{p~FXCp*e;-ypvaetgG()7v^PA{?zcB3c=1$JqLF_4lirv)#J9mNPI(;9$8JgklvNf z#tfQ1vPyR4o5(Be>qsB@$h$y02a_pM`7Li@b)Kz1`;vYv2TO`?WOsqkC2w#vMN$dV ze1nB_>`?Mob{_VERz&s{ekI4ltwmd|w-y?abbqGAfhrPZ!k$;8t4hzIef^9w;{~Lr zXX`xr!f%FJ>~Bjn(S~_=kdIs;y0xpvJJt=2ZXbD_I!$2{^H@2Mvy)14xEl}l*Lw&X zqWa71IcLwO7m0_}ZSFnU$^06;9=1sU&p@(t+vBu zq%S-6lh5%ol-*aV$`aOB(vGN$>3hYQKm9g~#?Hv3ue^(G(<#W=`C_6RTuM&P+CD9> z@7qnMZUS~w4NGAFIXfT}SYD)I$2q`j#i_k{cy_wOKc`-z#=hsyv13rdb4D_p|0{6KRTNfsgyU`whV{Y6 zI|XpVLt-^U4YYZ*Z{O5smXrCQw$)U`kvC<{9 z`B!2|A0W&t_E{Uq&m|9_o8@v6i?rRDP2QKRCGBfVi62eKl+D(+Gz<{1AMhXHL%E?^ z%2cuSbc$^7fwOraL2Mx{;fM{2Q)LV$+(t*dnd>8@V2bN3B*c{`HEs*>WceDyy85}_ z0}g>zER?YJ_dx1RGGVRW>VhxgYobw9Ar?o!(3kv)+VHWHWJ2dwt+LjxgyBI{BN-k9 z|L#BO`f~OV7D0zMihEOQl3Fd>@P1~y1@W>QTI=4MAlEiD);0tuSI7mIW;}T6LQgaP z1JomdO7foCuOS=i)aesa=OoqNDxUAb%B|WuY6oF{lDQgN_w(Vl%hGo|vn7mFPmeiZh z{`@!2^0_xh#__eLC$t@J}D z`w({iyv*HXUVt{8J6|#HnMcc{uFJx*yJnlOdTG1wq~8_#h67!)_EV7DcyEo~c7q(q z{a=@z9U5wmX|&?BsY)aIM@|v3?tQ-ZoXTS1BY$J!6}M_&fb-YLlyeIr&Uld7f9ZvP z#wIiEnN~4TkEzOJ-#`GTl4dqkxtY)4ZIi^NYme+Guiz1Yo>(_G^LtKxvF`b!_w_mK|=gZP`&VyOh=ti~ziE>gAy)t__BxqAfuQf^g6=XKsw8E>nh=Dbwd?Zv{dDZ4z>c_~W-vfOdty z)0rdXfD^}N)#5AWMySicu3DCW5A14P$8Oeg;9D6W%R5-LSY6L>_K;p(!&S?rP_?+H zvJQIv`&&7n{aLD1E~j~_WO@Q7s`F}8Ep~Qu&e9un@uHkN3`Wh;qdCHZVy&NSn&*lT zZMnk`M8*!?f;^dvCm^v4p`dm_x7dX$3`~s9VVTP9xi^Ke5$m7-V<~{dHpKs9|3e$2 z-V_Uj=`X}#5F<^8T0wWwMdbgpngzlG7omL5AMYbmSSMRD&?W$1j;$ko$!LO1hR3W<*b$I%qqW+) ztni)OLLAwvmn8eT~>UKZ>JmytCnR3#@6k){}Z0LtdN%PU+W#`iwEc( z*JQJ_L{hq81E*;}I)ro5KlGh->S%p=%)-1t7ug^@Y&?TYCh+hNQbT%ess^PFqB3(i>xx@Q8`{A4&6?ugMu z)Vikw?)KAHq>hJaZdkPteM9WoJV-kjGdQk7XHF2a7k;1;(Hd_=zQkYNU5VJpx<$P9 zS|#W}=RYf-X4{bPyzX38-)2!!(ACl6f7CUpkmf3n{Ps+yQHbIaAN+8SLZMH#t*k0? z|HnQ*+@A@FWW(7HJ`6(9-EJQ$sIDZ)D4vkqs$ioP*g4BQ`gN3f6om=ZO9C<9J=X@p z3(3h{3nNZ9JAkx)-sK#$6cNr5mQ#fS1^>d4a0mK|AKt+Aly2i@96gb&2^BPAeinc~ zg#8PlI(d0_fh!TWITo{H4o{OHv=YKSaQ^#~>loW$vv^3cJDu-GF9pR@F;Swb^R8bA zPc`W6YoVVv*1fS=QZ~OpVAWg~v8nX4Y0x?-*TLuLe=m=BAILh9f2kpS=;>JmKi>q0 ziEAF?&q&!Y{`>07R16uTpfOp#-;`GQz_KFefK(y@}x-k!W`_}me)Aw6nZAkIePm5!pzn8VQ?_e z?~3&avx<6Dh)Gr#_5m}#e*T#$o7mL}wz3Rfa z|BL;x&h&h(sH1oGeVRz*u(5NhQGO0cu)2^zvkmLr27`@$3f@T z+atU8QG!uT1Y&pQ7GCsWwq4&JF+Zp)+%-$6;Vmg7mmV@tg|JDGSOvn1zWpY5ruvZv z5$7P35u*?lOj}4J7FZ`3EE5OxYvnCch)g`e3#@HOC`vHQvTXp~mn(fck-kPcaX99g z%WhxFft)$1BrmXoohWsF=rCDW=h!#@&AF-h5J+~PJ#TO>9@14=M1MK ztHI(H+;m+<@T+FB68YuSIz`!85UOm%UttCf9t+MJT@4`@z-F^}3OT%K-weiMimB`} zo=PG2g*PIA;96OdtKbm#_}mDju#{2Ld3R%OTKF>+h+@pu3|bT`Xgj3O*>U`AuCuO- znZS8-p}bEXxu66MaAGjlu@2|&LzXc)BzhW>x*)!xx3pc!30kOTwW{W@0(~l6a znRXBOZGNu4vG~1m@~wfA(q(ho)9p#hM&d*AB4Wit-h3{`rKHN(YKM|8@N!karmJP) z-a1vlnN4KxV;W7*#UPhJ)tK@m{;UnEm6qbOrScnQ4n=>L{Psiub<52`Ef6x%El*}Q zV62$Ub3Y+Fukk#vw|t6w>DWW5#@1|oZ2pb*$Q`w=miBUrOlZy0oBus)KFn^P?1@NS9_h z{m-`Figur0iBEQZUd-nq`yjlqw$VbkFYFl}KfR7cbfPQHQurgoOPM)d>s}w-1+OC* zVM5DSAnku3xV{wPslEX*egWRozMM^Dao=mydr7eq(0#JCk#y+u$x3D!jcm;W+$O^r z=dP#v%jqVRJ#{)_dv~9LPsFAcNO+Giq3@nP>k;4nj#Q|5fFspD1wpuI0@32d^G|%K zo(-3~n)&H}o$7V9JYju2jq&@fN_ZFqI2H^_KhM_TSt0W58pu^y(27*{|26ZCCuw^m z$}ccUdg}tju;xK|3Go{y7#G!LSz{Y~EcNS#x~=6N5QBkZ;dDV>w^)R zn$mO-O~9}#@K-J2mXYcwl+0}Fw51x@cwjrh=yVMMAB7e30yRX|n436-n7j|ps4c zN2kL*xEX%iiSnU1Je|Cd$K(7he$@`z`0VOZN5Rwvo*CJE)$y&sFd^UNPM2`uoIzIzB2y1iXz{1ibWNk+E9a zTh!$-|9jnQx|b;3$`@ab%~t>AUykDlvA-X4gvf8_=k$vTrUN$yQxn3esp~v(NZ2iH zuAw0*{bDRJ(F_=;J(M_s#trpj)7Z$-iF+4BpWuzt&i4-}Uoj=}@=)ST?~T@}dLA2D zRwDM4i6AWRik?LLtjKyoMe~0kU<{@`NqwaFXrpnCKaE0-+s`E;EVvCjHh~cXb1EdW zKl{l-nX5L{r=4rV7-_vw_BDcU{h#)%ae*p7^U9$ltASs{Xb!&zMzHbi>(LDB6Us^$ z1<0_al(dKvDeoSXg~3OsZ%_QC`Jy_@#$u-**>%g99-=WAJ+TMeCgT?Hz!ejg*P9R* zHre=#J%%b_12)| zWA27-&=ZAG$};vuy+KNP2BTZ|Snn}|u)N7TRE&+Un#?&QrOx_1t$PCC!9{Mz@@|9i zPLe}>>oIYa=tuZ1bxbW#l$^#BX&Q$vaQTLnt~YrxOK^x&ep;yu zd1@qM1NNnL=M;mrge*;U6%6edTZ}8oVS7jVRz(j0oxfpXG5Xcazb2M6pN1h3OSm~5 zqlo;WMg5@whoHoqWb{Fca1acj zb#~#%AbVH%jQvyYqApWrM)%qWh|DVr%^l^G7#Ew=6d?0A@N-BHiD^|Q%Zbd}Cd9y9 zk)30ENl5uiJiHT`oNM*z?&mgj4!sYS#On~_13$k_fC-!5kB=9;xF+U`iDbVL8s{BBH0=6^nbP6GGvWqZE*7 zq?Hxypa0Yyx;ncE2k5xjXzs$86uoFDqk959m3%4eo1aJ=UF&96`7*4aQa~9y$7)iJuRl)K1f6Ss`*kzlR~< zDAr4u0Pu)A8Y9D21M2wL=CZ*$m_>=`HG`>T4I~5pVo6Vf%aQFXMqnit2gwX7mdVrK6x$i&I_dZXP9nvbQYX3B(^HUh4R{A!S!Jr&hkf`u$UYN0Xh3cHCs0$ z^~hk999&8;f{_ENM@Z0j-|?z(P%j5mK> z8RT<=_6|+K?ayO$3k9v;OAon6Y?GYC??@vE5PdeQHS#Ko z_6_5Vh^a7Bg3P{d$eSX)F5s^n61`feBFRu&j)U-iuv35gV=dBWyEJ_!;$Z_L8-JA>(xByY|F4(fWGSVcl1MpZ)Ss zuUnLvw&_vztgMfGFO@d+Xp`bE`cYf5tuARm2D<|BBBghSq$G%UHA)6QW0;Bye>Em- zbBjPp_C{Y~sMKRQINk5#jS&%d*?Z@X9I*&ZKJ~oK{~NeuDCGQev&MqZYOS;L%cpA-cJCjo;VdBI=Rf##_<*%W99_;}w4yBR`GOsR}-R zOI&%ua|(A&f2+D@o3Z|vo@eONsb&UO?OJX6g}-ykrZd9XW?cNu-)reW@Pi$5@eJX6f2~oE6Z{H-n z{I%6BW$9*=azU=ATj7ANIYWAxr<6{_l-#K`r8n5~x9D}wretT|j#y8+ntay(>nG2b zv4r%I$At9C>-`-45ds3Hmk8U5X4;Ik!*ysZLLXp}-Eq4sdE`m$jLZgHd6QS&(tm8M zW$bsAk)i#FfOmvC44(u)H5Y+LW|keV9@r#vX>{+*dB}Yp<=5sT+4*(Z@|I%6VNuNF zkyE4R)u_D!lh>!J?T(rImE@PeknVJ6Hv;-77MJR$l{IdxJHglt;&?~7YY+P^1roXESycTt&+V5GL zrhf=w4)$Qo83HKsO(>EOLZ0xX zfrX{T2M#`aMrUDO&M!PHNtIP!ZCm#;Eo7jw+mJZ|!ApWJRF$@U{1^gv zzsV-Lg9;H(^UW7p^vlAYNz=VOoSW@w7`zm;iLM(0JHHePf|A$cGPx8|$(lg?{j=qN zZ=7u|cj!9BG)@KQI&-yH`IuZ&UI}*C+z$Qgt(o-@rsg*4RhI1907Y3?l|9-F{*M;u z)>E6d)!I-Byd>l<@B;V%Yz3J$+ChLfi_d`=u?reAG6q%a_m);Ry+b+rPQ_$-9aOV+3YHk(K$Z)7h>)bH?V(9*$V0s0^pMuK-}wWe-Kc?zB70> zA#rzQ#_2@ue4??vA_O@Nza3t25hPHH_g1f4H6LC;5pXEh1%X}VN9b6qdhvjR>N8Z~ppC7G87U%HIv&4*l@Bu7;l4)WfMho_ zSjUk)3Dxm0w1_&%FTn95wSSulZr7V(osRjzd>Xeg_Vd$-FX+*z*lTOZ85 z{BZ=XZX)+(`TuCT4ydM_D*(ZX7_i`?(EJVzgRh^#Jx6VxJvsag`#?^Sn}>WmgSt0L6Gd)32NG37DUE$Wr+&ogA`=3P*}Mv6MzIB9N0+NFnqjOYJknu%30Eyi{c ziyeow)Ex%CZD`{j-hOiE{k5@v-O7-h}Sr-5Y65Cjqx=J0Y4aN|TK$x(!} z#Bi2?_ks7qDLeW@q8*}rTaYEhiaNp8ktgX+0-;|9Ow=BztLo5ZY(qu(^C_-k+}_H@ ze32v!V56^O`zM@=)Pgc549gcMIG|3UUOKFU`p4*l|3f&NnL+#8rZ6}00TcC07NpBX zHJyAu-;6n_I)mD2)^!PE$-`lQQLxd=4Q3Fzpu?p(jV0VC3ex(fCR7hXag|BzSGSh~ z4Pg4N-XGmXK(Un8Rot* z9|`~ir6;^MXexOKY*l*#JXI5hvP9KW_s1k9=ErD!4D=$|QJZFzPN?L;2pLGw*EZj=yCyQH~9=!VbhM^>iH%l__^6PdRSB*s!kN^(&hQTeX~j93Jt zI%C}5qH)yvvvx`Og>N+VRi)nH{`Ig=Od^DkcvWnB#2a%&_>gdZ8Zt-o;%snyVM>@s zlR%Ux%m>u~{Ha!^6gW(%Ni%k@TOa;UmIj@O^iy&u1C`z&*VD2FBsQ>ina(THm}K-)$ag`R88s;^tzJwj3* zV%No2SqWAQ?#RMSht3tl4&EP7T_Aef(hBsag2|ELzb1LZ9s7dccJ`eshY@`t3RCS1 zhF{topJY3B7`^{XTB?5M z9cyvsC=QS6`9kS7cH2gRJ?PQHnEmb6P(4u<4CwhwQ#yB(Mi!32C#v-R`&z^P{`Xcs zVa|W;K}&BJHC8CUh{G+v@|1qMUqo6+bJ&8Cxz`Z8A45r+p}?Z>phLu!*K&S<>t%c4 zQW46n>-8pRB}0QMPB%0H6H>YbkbC9r>lRtH5~q7B5m4KBoy&avqh>J$>)89*%MHx< z^2Pl<`;j6#hWMQ9z|C*X4?>7TI6_#j=uRvvt3H}d_%mr*Eci>dsfe(bK0)cA+%)Q1 zSgBtbfP?}B0|){{0%!w@jJ$7>pvlno3-?rS?$1T<{x$EP=hh|ZW?JPrF$b0iz0`;e z(H=em0*41}7_@6}<8`BJu&ZhFSZ4lLQTIwE+zQ^)1cV%E+RFn@VhNv!pH} zSZe|C`=;`}A2*XlMh9(2Y0{en*J3kk{t#8sX>_Q=NgM2L7PO6D%2+F(1$7Uww$AWxTfe_D5vPQFzo?R8* zzOBul=G0uY*@6@ne-BG8(45Sme)_0qs~x3%rlG+sP)Q( z6|kr#KKob4?2GN+GF0*IU-#zv&kh~{2KS1m6%P@uGZWo+jni@bYMpA@>P#BPEQ8rf zq%!r`rH2R_6|fWSDFon2}^J@0QSHb!XPyTr0wJJD+ zT|ckzmzYV~OhyL-mJU=Lx%<;xcACmmL5=l3VJer%1Ye7BwsO07oQjd$?C?WjDfD6#kTqsjrf>Z&nCu?{gR zan;Hav>-ef!YSa2c-xRGuy(L@kXKet0e$lmyneR zm#~%;1N_uE0g*8sr#UwFY}nBR=zIC3WAXJ-`)@hkMo@N>+;UveS0j05=vW9+{`WLx z{CMo9da!z$`h-S<8d>Q?X^x7Co_b7aYl)wFC&09Ht@L%tNJ&9SLaAlx3ZPg+uOuqG zEGJ<$7V(x}<7es55>B;XH7Y=Z8mC5fa1#P$1$qGT0C9p80$2h_0)zv^Pad7zhf`mX z?z|UlC53aq8Q^4a@c;tp2OabsBps|F^dT%EoL4L?(^M_-{Aw#v{OT>GQl-MBou!Uy zet^hmg>C^EdKN-3C74P-HZ|5DdOTh%&Nn*ZzA||?aW_dfRUk%uhSP=t-_-l;WZ|40 z_wYjR*%03n4ilA7!r99$VZway{p>e6cp(+(IrzRA34oxPMv*y{bhP8^-ndG0)>Krxz@wW9^n9;oqtMg zO-$MAw!kBgAwhLgphZ@_-p7!XId-qG16!zf&p@MJB`)q0c4?hV`_h;D)QY{zc2Xtk zj2Xj+3B=fA#9Wnu*DYQqk@R55!RxuB2}`>x8S~3;BX|D&%Wj9>G39U6EK@VBd)sY>96vXiUn)O2MNX zP*J8^NKi;R@(jN9dAL?_8yk1`VcE1&9>5XoCK=N4rG;v>zZ763)9Xv@=}vT%Y^wGaw3TZrM`7u9+wYER zo9aWl0(nDj73rkx7Tq3tAYHJMtfVQ;0FMxHjPcn*QK}>_lBiEnlIuh}&n9Tmc5}ERSX!iRw$T;hh9L2l}!a^=O!$T28@K`h|x#!LW2kR z6C{3udeAT2vel306Cx-GXYRX^I7*c_1(qscC$OASUp*d0uRxeEa^&p(yaJE2D`l%7>AJ~Vll1WUg8fF5G(IpbVS5esvemOeR z0*(14Y_OBB3Q1H2+Hj@D(vtH;6$+o~i)I;M?tNQg^ox_Hjop6+f@nO|?Fra9e7wAVu<4(oJUl-qn4ys|lCBNG-Vo7Q`fHHTyiBZ2HYfn8M$| zXjhx{k}k1`AeT7b;B$_c#c)eIu)a)>KvdXcX+p`G5OHM)kKs0qqZekFSAmgn@kOW7 z+A|^lwNN{Ge$l(237hL>`c_XTAD2Tc#EYXU{K~Tc*cFO%CkauXRtjKg7<8aHr5s~$ z6>2cum0WzoxA|hadsIw)8F)Lgx0P-Ebn=U20)e@pUjcx=#$;JGLC_)@6qM&uM(PcO zH@`?MA%KBPBTkiyrXQ%!ISmgZkjk)Z{N^7h75|RyYjctm) z?7Lc)0?$X*GKfJ`sEDmIMmeWW&a7%2!CY_X zMv7pbaib8PcQ?zG5kMQ)TU8C9Y1xG=xhq*G^ZXr;uWH4Oo!eQXGZS@(_17q@STZ6n z?bO#2ce2DSSekuc^&5HwW4tVUVJY((FrQWL?-tZ!49FjQJg}MGxes6-^pi0Cc@Eg8 z-nm$Ieg*NcS9`pZZM{qb<8;b2$TvaRl~xyj7TECyn9E|Iu@=fA4$)e-F13OrXH#d> zAlp8$)SCvxDRwcx=Jm2#MLsr!%`%i9ZHlB?o(v@l+5nt*m_ z{vcIQ&tkFG22YIBq$K*_6MRgr54w91orz8+4dz7SmtF!xTY0Xx$0|FCud+dg>(a}K ziFBVhnDc}Oqc9<^O;dRg>ZLRh8hkF_0%ImdEhIm~K#jeXCXA6mim;!ByR$jOk9(`q z-uk9sFfQ7LnY**8J`zSTn~|7(@B^VeZ-Hc8)aG5W>}cTu;=;=mg&!w1nAM&*F+tJh zLNoz|m2HQouEB|!u?+&D&!u5g(#y%p0>f2V!Wf20-HbWgzf_N+Ws|y=NAo})WimU8 zqsbUh*=cli;&^g?xD^CO1as%Kh=ZCJ{kU$<2aadICY0gEHFRl(<6WiN1kzm+1U$-4 z&IZn=RN8LPsvpo&Fv?svxx&beTR2$_q-`&jU#=y}60d~%NKVqM?oPPV7BV33d}t;E zS6RPWP=^bIJ($0Gz9`Ewh|okMCe;vfQ$Yc|O??@NPdtf*NpSGCYfw=b)2E=Cp*^8V zIb$M%rKWmov!=}6Bxppk5Y5TE!7|;Z%wb)qkmVDa&ld30r%?GFR|BSu7^^3+DsF#j zGHD>CyPL4hfWH>|sE|24bpuwi6FOj2mRQ4?<`;g)#AQ6tykV#45@=uF+ESN0#>?%>=;|8^Pas)p}#rX9q>$hcr9nmnJ zd7HjU?dGxdYaz4&>rfC)I1^R`^LTOuWPt2|*^I$fucpjzA+*_5HryCx z02STBV_aF%Al^qO1!?3n+#ZDtx|&ibyEe-M^UNzi);=VYH`VRY7R(_ZzRR*yzi?3` zH|KA<1^QXqmb$fk0xs3mF`N(@`?q?ANp?QZvKO^PQ2?k+tx8K1p6vaP#Buoxg}OmM z4#S5LgH@w>nCE-XW)=X>|QI^{{Y>W`?j-7ejVb@}1JB1j4Xjj7X>j`^ zOO?g%RqsY=?o-p53NdS{+gD&T>PJL#Ha*1=&gFSsLCtxqO+0c+tYBJ!jCr#yA;7{N z5vJ*BBew_Mn#l8AdSO;80a$CGF2N~3nmdfuIud5z+m=BgVK(&g6NNc$9tg-*l3g-# zqbu;PY)%xFGFuq6V6FCXhr|mNEEoW?Mfcv84m0NXRW@fAA~t7~J<-ErG}!u33zR-= zV%I?y{PG-HKikcPk;n*}SQvMp9XkJr-IJN@>*yb*bZ4sjx!b`PZI}3KmqD0QiW626 z!WXRp<&O0eAQPw-4O6rxH;z8Uy0j)P(;)3@NhY7KE{-kp=Zl4PS`)#jVh`wMV?dpU z;k{Ryixw_adVG$>SN+2rve6);TUzyP;99Joc!7qr{>54I0+1}ukJI)A+~DG@iHbsb z&x3VPuCsK(S9Q?<4l7MA2?yG;geg!TfNTSYN@ zVi`*3Y_3!k-nY!5zE-;v^TOPs3P1L#f4T@tc9cK%fLT%`XZMXJ4^CAAjsAUyg(~(A z56q{2;i)Cf2tx*B&G2SU%&9KzF4}YnQn+`x!`iGLPO7bT zj+N7-Fd!9uC?|bZJNt5M2A+fkF9^YudxLW~Xc&kcxvoE8>JJ&3AH*B4yc`&uYgu6K z4BaDxWx3}P*h>N<27J>Em-8Y9NE6o!w}ba+CO^8LWA|H_fO-YW^e3IA!{?*)HPh(+@LR|2?IVi_(W)$sUVdURre7n zqs#;YJRX#GsO($-MbfHVTJCQ2(3QKBh@Gh-OQ#7quRZ((0T)F*rG&kfqe0u|^H;I1 zXHuar;Fc)yT8+TMdXlT`Za{#e5s9tV=dQxhh?lw0UV?6yahZT5#uG(vt!WdKcaG+? zC5qEWb@HTb<9tAc5B>PLvC!=F_Ls-?UD^Ta>D6J+1N73%?YKe&2S0zAo7!el57ND# zQKc!_V%ZE;BFM`&OynlC&dLRX3FHOMy>_Qf(?4Ybvv>z}to5XI(_8#w1Z~rk|Cno6 zm`B@X%K~i)+n>k-i3r+-FM$Gt5WyZAdqy+eDhtaB#b~8$dYC|TS5_L7&6Z!vZ-bTF zQC%g;P`S{B;8F++U1nUbSf{3-UTU3Y0#Y3%khY$sfr4NP_$BWarN|W-OpTb1Y*Mc2Q@<*1gvUG5~f{Y z0@mNO9yWpLf|o{*v$etlbV0064zN+aonMG|kSf^e%#$W?EF>>eR~in6UxshU8iy?A zZ&GE|9PCJc0>3;K;!`rN-~$)rSqkq$XIsG@4h`SWer`K0a%_$b)4-w;;bXS+ZRY`3 z9oT=4Ey}2jofp+N!NZ2Y+9lAjSebETVf12IL9nm~^v|MOfvRy3RSAQS+(?+(E3B*pCt%)df>=@w{Nqj`M0G?Y59^L@6} zj}OE?>6^aws1SL7jIZNC@0=^y6@_$`U}MbZMc`@)Vl5!)0Xx^u{c1UfiU5=fj7n{l zE&xqtqnkw~S+RS<2a=qmK#{=?)B#cfA(SD&6Qas3U}2Y{t^&Y}$V}X{qD{>fijKM8 z60k#oe~4VtaLQ8%L_QgYdH~BVsb5e4-?!&SKk!ntu6TJh2p!+%DS-W?!UJi4$zhd3 zdqD3XbT~$-VtX3D+y#0}>=^Y}kWM-a#D|fc4ce_mU-W5v7}JN}Gs z9Fc;|&Q#x@amzYXm0K=Q?@7cVps*uIr|Hd6>UBU!!^qQQD!)*piW9Myq7gUWUKLsd z3^fxRIvQXC;CiWi&;vo#woNW1XDVz}zA$3Hd6ahe`s17qwgXN3W5RKIsMWiujLk8^ zy5em;r>)Rol;f^h>28D`K`}(L!oohyiu+O+_PJg_l%f5SwXnG(!n100mj;ZvYUN8B zSe|;)vn!V)6t>c)u!OlP2C8 zD&<R0q1v=qU~p7W2M(l3A1()!Zn{|m$Vh&8`=)r z)1R&h63%WaR0Hzol^08SiXZ=7s|cIeR_QC1lB-b=-By_>6<%?k@&uokQ7*|NB@Ix^ z`qs#Ldkk{9RIX>M`sdibE&J6W`@TZ=4svnTetFhZpn;=U;be^uH3H70V1 zXBYmrkE$~3DeDaskWXLi?QNF@_ig8L-0|F$AU{Ro3= z{6=ht!gm*O7P!GHL>CoA6tL{IJe}Sa-zK?Uw|ejhH;Yq`?@GIP23QVJ8A@*}5|>^F z|Mn(_K*Bn?{OIrvSo}^#4k@@~04!TXOr*D^s7kJb*YN6DY&U&iyFBo#AxhLwfC}t1 zvN%*D)3|~ClR^P0KAes3QtoQu@}uGe4K9voGvm&VeE`e%io6FEzgj-RscaPBOC5#B zcL8poTnE%Wph3k^KUQ2SZXmwvWs%-}dAX$HU6_vMv3&C{kL|LILsN$6fkMOVU`}wMoXq;tZ+3FX%Arbp zmu*-H*8wA^$KZ92q1^h?YBD(__!4hnd*o8O<)Et6diX%k)Agk-CJM;;r7~do{3eg9 z0s7Z@@H%Qy4zY3j^_FE3$AKeF0YlOtJ}+&T>F`ZBk8P7(za0!^!4=_n0n1W&6Q95H zV8s<3L*lz~!^*fCJ~YU!GaTa;RD4MSSZ=t<P~LFlE-N|*Mw%b$KY$@WC}=qHKWJKYs;lI9|%Xa<44g6K;0vc z5#h2~*>y;jA2Y6NW;R~QuQiQpLYv)Z@Yr;K6?Ze^11Re07))m>sh3$NtWqS0eA`h0 zI5b|xaW%k0X409eBRmH2hsnyWXB+>0x*k_GeuU`qua4{zZRoP$U(T^~NJ(kiFgGfA zgyWu;jqiHin#?6`qA$5_Zl=wO6RLSn0Wscr0dUCbm`bbp0 z>aU?z_$i_iu_g;0Q5twsOW1AioaQOkbGN&OMMLHC`bWLjvy7YY zmzFZ|&m(d^71$K~kD+5RzS#m^!KYwYf_V`>;^?Fk)182h8T34qQon`5G2-l@)m5_` zupV0Jsi(~jUJ938(VWlDOe(132>%L#5YE%xGyU<#=N78cW)STqCuo@VlJ9>+n^!e% zURzn?e@ygo68jAhTjTK9OJoye+3ky2wLh&dO$eUhBv2t~M}>qI+JpFoBrl>?kiw*vi9P;+@42ga==h4!)#CX8!DdH#KV^3um>iGK)_?(aW^u zVwEyrVi-3?!_Rn+b0@Fb&8n{Fu~GTlR8lwlit>rY!>VHH!bc|D80tyURo2>~$5+-D z4{IE0+bO`mp8>ly=%u9%P~g77_-d*Emm$D=!tCw3p9JcC)BC_=!m=u|L|HPH`XZiT zCTR_so=-pZ)p=&Lfc?>0Rcp|$c)pg&9bcH0`pannU?E|OdEYfg+6wjT)E@RE`bW)3 zq6KMwNrXOJ&!}T(%Cf>VT5@_5I7gswCP1UilvTySi+iExZoMO3BEncOi}uXy5HhYv z^<4T`UiI^OJ1c8;!m}KGtXwELW%ALz%HTH8CSP{g6WNgjinPi3N!z;ePa*Po!8Y6u zD`iyC3+FSanXv@&d3t}Gt&w{lfa5^Uc(y1=TUX@woy%j5044!DDoQKcbb*qSA6BXE zRy|d0IAeBM6d1305a<%bV?)xRyZ&J3nOOx0^$PaJXzyuZ$lF;O3Zl5r+tPISH(WX> zMFp0KMc0g=L;t&$u9u>QfFFtmCTMi>yfFVQf;#XaVd_+sDu^E+7$%Gl{i^zOYOWwX zwHM|Po>l)-j%Vqkc(tCCC!zM0f}_QO+qNrug)Er^(?UT?mM`J_%$*OOaLgRDO z>^}p&l&i~+DP%&*4Q{n%0`9cjS_1Q*R_7hJc`ZN`M44xPT&7;krmr)9kJcA9bH2*vG!s{r5Ky8m_swPVonCXZU zvn>HHZP@x`%g0DF$8gZ1KvA_%wgFD(&@^x>WRU}BrrhXoJ|ytXaOM;6zi&_JL6Vw9 zMBA3BhBKY?Pa4>Yt5j)*ga?>*4&pf+s>>-5UAfg04{aTqYIh+pXypj~oE5@H~Ipmi-?Nx#!+P|9-- z4_Vk!t_g$dnRJiYJy|qPB!5K9wn&p~0W|U&1;c;w5#E7EEYb1wt=d4z^>$EVypkNa zl54`A_2uB}Irm36C3so9k|CA{P?U?9N#81C$K#f_2L%L)4g?ex2hF8#RdhdHzw}m` z$YH8%-(0{&OBXBII;1mZc#M$Eda>X%;BNp9m9tZL)H=lj)}#pq#I3a{zRTYxhpXWu z;%mC4gDrTFY!1PUiXts0-{uYT85U-oORGhE*N%+<9<{)4@u($>$2GkI*TI^)G1T$D1D3W0+PnuB zUfz0%>+FtT?4)~P{aY6B%(f+}7aVecOKm`G!T|!10ZZ-cKQC<~16z|7@|Fa`e%o1g z8kl+ZvZ%+!4~C!txFJLG*`Gyp|6>j`Lp3W``3O@1$f>R4>t)ZHDYfG(I*A)a=MJUS zs+N>`!;6{rA=VD5RjREw!tyJ{CGFDTYu9ekF(uT1u{L;l$#qigWzKBe^Vu-lT|-`P z#IzR1HABYM(|Y|qp1y{%O(|P@gWF3JX3;rv>jzUd!X*pC-amuTgxnA?+Mv_m1dy~j z<lBIEvkq5)^YDUD}ox-lJm4fKI>`sbxiwjpSbfeewGW^zKNeLlaoOS z-~puuJ|ep#W>aB*<-_!KF8TRp;N-*o=6Vy++$(h&rGgc+K~geL@sq z!VlsYDO%yKT`YJ-sk6U3bxR>L{M>*0C?4%b9=u(rKmTbiE8_s94Rv+p#PVjmdoewZ zZ8}{xRO}g${S*=3?a`&zqdL~z6LhM-ZlZ1wT6g{ZO)jsfTLU=a3Hn1fg2O}_T&&V_ z$;?UOco9)J>*f=rGc)}_Aw2J>Y2>kJEXLr6O71rsrOB3euCnW6gUfm<>yjrFRdj|O zpS!uz5;@!7O(EDC$3XC)&9^Fyd2%+PK;GjYUZScqI-6zQtg5Xk3V=mi)pF=|Vw;^L z`L6$p8%*}3q?Kqhzf4~hWS@8~wt#MpK?s?`iHJ^x>i8AD7))w~m78)-u9(%Wa23WI z{@Rno>Qf!_hjbdq8OhHrprZh@cPyRbbM+ikq3IdP@SKD?v+>ghqUViu=Txoj38x%q zhCbM`IEMIZZbsr9TfSZE+&XuI#!6?;?NZ&~ah zjqSl=>za10@Q1yQrN(H!VMl z=#H?(ko`#xwu)Of7wx%jo9>A~mpsq<>(-6+&elVo+y{Ok;@R>er>1>2;{PgN#D_^) ze&LuME^4g%Zd^A-(jA-^Y-StS+kqpq!!O7QoO0y2A^*L#)8j+u5B)Om%1tzIQ}|Li zHUFe=-#z3D0|=a$Bo(t{;LVySV!i6?(HcUiK&P_HF($=8c&90Qm2 z{<0{C?rl-P4h;ugTkJv%Dq5`dmi9p-iERAfe}$(b_(}8NW7wh}$mu8UQ@(8n@P}LA zU5F#=YYo*oWm}Bd9nyjX2|=oghp^ps&oXDFOyD9LPWdy7H~u=Xs?n=fSwTuDxV+@5 zfT%|RDova6Qr!&vQcl_P0_}B%uu&`#m|1XyjWJ9M#j=zjMAaI;bvl!M{T%?lB3!gl zoprZsJUzE6_$z=`&%jCH(pqDHc&6%EOgA(!t2!e_jb}Y5UzU(JRe{}=4ZnAF#D6(> zc|bq5gzrVp^onnraa~ij(PF>yc^{PS^P!XV5W(2F{7d1*PFXq4NO0)f?298yp93_% z>6|bk82oZ>*>dHWfif{!EE7lqJY0*YVe3$E;2>tYuIt|(^w zB?{_yUGI3iQ#<Q9nbHM z{QPz!RdFi~$1B*|zrHf08@(ZF@SQ9c7AtU>i9G8%>N)eR7R6pYyLKHs z`%2C%CArqH++$%nU)}RAswJN8?=OqVPiItXm*?E4kHX1!DR|!95?!A~J}N~b0-F&2 z$siwngwo<(ac>^GqC3<&2Fr(KS;&2nbr$$&<}C5=q8Gw$H_Y*G*=>X6_DbUP%XKfS z#YlU;nkB0RC38gJ4EBmRvQDHs)wE8^-0G{Dr@UPsBc1GNgG9DdRg9OPIvze=v~tjp zvO0lw8K#V!CApdUXr-Pb=6ajiL;ktCG!yGG+<8SK-a};W?06Tmu~;=bOsdtpzyo*u zgq7AuoO<9wY&ks|OK(F~RaGAb%GCEop6B)WQWc*~v^f>}Y=fheD~QhOtAE}JY|$-U z&t~-$NwDa@KN>S?p@MUYq&zKh_Y)z#y*n=$VtGv)+V+0Ft9(cW= ze^>UXr4YNe*uP78bS$CRtIF7**gqi_lypGb(AhsBu&4AF*tJii8oFSPwCviaQ@vgQ zBOSXqs8x%biEd1fLX2+0enk8!PMquevjx47AC6cZm=``;8&zS7xyA2mb}AYs+2oJ- zxS%6Z^#0H3lRl5a(xj=r24EBM*v3BSS{+bIgL(u4DjiZ4$9MTf zsGwRC1B$euTJ>>h6^rc;Kfm&jSr_@Z8gyw>qTPIwnxl7D{XWk0 z`CYHYg{NriffUb_wi*)zOg%o*=4WPNCynRV;zFd;gl96^H)O@LD=sz>LNjznoWfxL z>zo~J?09>!UYSX#)qa%;Pi0}@?(c=%u?dP35hI-cNQlAX>*Ze^y%9kJ{9ku9XA#Z4Q3=5V<3}-WhM0L1#=~SzT@FBuUJ<}xn zr9O*$)_0|Q^LzJKnuf6pdYY`o#_ntHC$6>{GZ&cR^0%I!=9|{8H#W-S{7n1D+jls> zp-0>K_LQB5J{+rA`ER~hvkr^cr~4}+rh1PTeYiP(r3oDNn|$ZQy7lbK`qS+cr{Zzr z`~LHJ^0s6HN$gwCTkq4TYaFoPD+QnfaB}i*)n# zdCO+l4DET^)&`1{3U*av>`}f>d^GdEy+YI0cZ2v$7ykOgZkG#R;`KxU=ZEhjjn$0bCHw^M;u-Z|yg2)M;YWW@F6pKEVVa zl!G+`*9}S=y;S)k+p;hJ=Mnv_R&MHm!?a1pOW&%&?r>)BtgFTo$);1zoSem8dX`~> ziTAcQ<4OrA-tn!!94z11wvHuhG~>jF!$i!;j$h(T)!!Rq1vzC^g?!4n(@OG&p;>QA zo9|w@o!ppmXhVM7(4V{Q&EGss9hvXHRMuSYyS(jV6hcQgIgc=;5svBEuVs*x9|a~w z0L^S01z+qS8rdvff9r01B+Gm0JkP#2WQ$s}VpHriUVSX&+T=i{wD5|LMnO`bdhgW< z@|{dE_BT#g+bv@TQH$SywE0rvZr@FG$7J$=d3w|ZnfGbLy~&)6Kezkck>igmJFP+y z1mv5x*uK!6<3B=QYN!}%pX}D7MMvpa8lUD4e6_X3xaXq1c$~LKyv62?W#hYZZ#)-} zU8fp`vsU5Spm!Z|ay@(cC!tg=Z(^;xjMf)6@sw|O=^@Lmk+AS=6fEhAZ$CHRQ28Azqcq$hZgT%~ za8-{$ZZ|=%10y)us>!9S@M<6SO+DKwEpDl>yAzXuW1MxG{E2&+t)A>a!j1$*{C*mE z#GOF;a>hK_PIwv+rUd89wQc9gZP^{#*t>cKdG|SUn1Lf|xC;95?cfmfBgwT!H4jhj zr*29KTk4jAk=C7o4TrXZ5r*A_K{A(*JbhH$$hTN)Y06d|-X0j=9DsHi8VrLo2-E z_ztoZlfdwIGFB$D#*-Z)@~llS-u?BD)nsj6xA^`P2})$#t`CQQ=bAEnKagC!*`$_C zKC^x?Amk_l>1X+b`~|SkN;MxBzZ8_z2=!RCfCp>Y!2NRe=&sf>1-ul^IhZ8!_a;Xf zn>T)q<}}Y}^f4^de;y2in}|qTT(3?)dwpPvzfQwMYKiVNaLOHCFfpSi&s zVBvH#zMs&_W}$Dr(u_nuesUD!A%Ybqof(O>X#JZf6F*Y>;*CI`BKvaQp;&DAlf4mV zN5X3bS8UAr<1Tk|M4{P2kg40}3L&0wb7tnsVdJ<;e>1n4#r#JFSA{5$t7xp4=Dz=W zy~e)6x-W2_aeZHH-*v)m8B5L%!~aZp_fAp@hYy-(Fl$$Fd(mba!x69jUaevg)aZvg&!m9D)1@4rU&R@MWj^SfF3Ch*OsM<{?cS0KxkOX2hnznH+7;?QV+gpH*O76ObE_K=~q7L|IxCU{mF{W zn+L5t&tICj*NmdK0L&+}#B10#x;m3MC2)VTdX#*U>M~>11e$Z(XK0z{dj+hG-%K1H z-4#T~?ZxAwJh+6-RA{e^F3mtlNox#WQ!!KGAhme;;B)f~M)M2@^Ngcv?$>=zBr$xH zInRLjyxbvl&N{JjG-ts1_gP!I_64kzv)Xr&!;X{>8uMf{ro4NL-H!(Lo^AG*E%g=)S9EJQQLQz*KiYF< zJJxjNd9&t}hX2cqS5O^l296NE-Xh{q?!83l1b_B&>tTJF>?WZf$6x(%!m}_dQl}@t zPU?)fLq?beO;>di7N*;&nVs|0s@H5(qyJ(x<*gjP?r+wpnTh=Fcac;N>n|rZ^7a-$ z2Z63`p9(4bWUU)ho=Y&jnd6qEk~v--OXya!V(TWOu_g}X;wD=a)#$2r)?ztR*4L_L zaj$R=YE1aX5kL6!4Ue?;E8ll9%9IkX4u54=zMeD2+&BvPKW99E;O*UdxFx z9t*R=8Ow7@5VCAW2XS?2LM`nkgfADajXzG|7o zdbA=7AdkMH6w-ytoCgOs@VQ6$2%rgxjW3R2NfTdRJKu+^O*PeuU=tpKe zwd!>u0k}Tm=J}lhP^3J2_We7T%DrXaJe{*4(3QJO=g_?`6R+951?WUnuxOX}>R1dP zXHFP!lSh(s`TiR+{LZ&Byv?rcM(4fUN5^YzpOV4*DpMA?_iQPhbNaX z3Va99mFS?@DxPxeyiW+Cnf~+cd8v6gEy}>3at#~qj~b^#&sF?mLy+80c!VMVWhS#l zQlcTK`yhPLq&Jq#@81T|N)zQ1iN0mz`tc_|e4b(vjsMgcg)*{j#)Gl(QUd5#&_uwC z`^~hI2KX+t%==&0Q4bY$neAA8101z^bNs9K!nGLhE;R4OufpvW@S0j@>~$d4*F)azZ16c)VM34!nlJ(v-iQ~J%W_ZuP@C}Y*0A)7QmJ=% zvQra*lM>!?CTcQ}n}>r^hIncBp7m@me|_rE5n%8eP{$vjyWOScNkvgT*n{&FIjJ{v zELFX7CAnP^5Wuw4GGsEvE~qC*uOppFw0iK8{@>o}qGcO1en8Lffd6mEb0Ctzg#=Ph zPMJuY5zZI;m?QteSd7guwB|^X#?6SXqvPYp{z-p-#^B*0Yr%~T5skR=D_LLu?(hN~ zKMSdC`=u8lX|geGpX~l3Q6iO7)?R`EfpS&a_|0Cr!EZ`yLUqA#J1Zmf-M+qP}z#>daYDsuZbBuCqN3|B4ZWkHkzw0zv5OTydh1<#K z7x3hE>oet0zva~B;;;E}`O5$BwlFohHL$fNxZKqqkQ{*U_4;}9N&mj~=5cqmC)gd3 z{^j{K@=5z~_0k40k7S8D%|S#9l(k`=)a57#tRGeuugl^1`0wAW z7L%F3eLUunIMnq$H^VA1-3^}WCU7|oo4hPtT;y0g0WTeprb{kEcc5hR5yleKhyqk}$O=*paOryIGDvfou>1{0B&Q&y~7%UKM33Z1a>mSZ#7Kf|M7)_Qy9}p^{Hik1+ zXqP20Ea+`B?1J_0!sr044(4`r(B%6o?vLNZ7HvrvrVi$9%eq?7KDaS8g2o%?1dDy2 znHT0y^#+fe6$$*KuPaB(Aa8u<bGUPx z=P;V4;cTVtFjK%T#_)Qmg(3rmfpExe+VJ0uv`-?0W7Nm*W#> zdou2Tc<`083gp@0OcNY$r3GV~mZKAX`+YDD#IV^3u3K=;6Qx_xZXNR4fzut_*Lsf} zq^s45u{*~W4^nH!8EZQu)dtjH`W7}Yi{2?PgnkHAp=lj{nk;=S)G>S82By<#4i{vz z`NTf3+14L@d-srWIoV+~_F569(}s1{H;72_z>~eb`Nxh24t}i6-7QDxP16x*wr!vD z=T9a=qGwGALgMEqh%UM7a)=!A=Z+>qkaz9_{e}4SI0#aR2p9q@59@dMu&*m|&QxJT zeKyFN_g(D3a)xYL(G2)*IL5(Q9tMfgk(hvL_#MKO5me8vjvDZtDL`G8lwmVk-O=p zx8jlyv2Q?HAAN+w$_Lr@R_&jCBhKQ^v~5bjomFrG>O0BKSKRg;1g#HB6|tw$RhKaL zFN5>)F__QN<|@6#+ZY3brI$c2lK}YboJZXQm8#9Pglp1|cFx(rFRiZ)_b=bPF9=|# z2$sR51JXKldJ^~*`11(pZW2)G`4|5d#3<#XZ=2rZX4e(*3h6UiaGoqm6?x0=?GOk- z@oN`|u3C=(NRzD%UZ`tLA4*!&Gf(bjw{|?H^6<>ZTWv1_BOZW(h-3OTElf7qa|W^P z1|f>t+MA{*VgwS>2E>7&0-GV_do^H=FE+gkKRe<&Edmo{F&=2$7s=|f#dIs&{WUTy zNgM1F^)$}-NUT?za|qVM5!?acu=14xOFeb9{sj&b;1Zx-Bv9XE@FI}mgth5U-b<)2 zeP@Gi^map79oXvi-Ua$d@WtLu92^1IbboKh30;nUA{c7_z@-Fn@!Qo2R0Z@GqH-?g zcKShg6H;sfYHTkz*b~2o@g4@(NjVNjxHDC!kky80C0*=9QFrX{6_;`sKdj;ecw62H z<#@ba@Tz4RD0A&7-5;3E z9%3$7H=Ofkknm-7rTQL35cpc=(m5bBX!tU5=?XC7TP}Rt2LTEq6T}?C*D&)|H8wB= zkZ=?bO>;z{hKPEh-Qgmh;PVcF_+i&r^MqhNutw-DOv~uq$T6UpP|I4H!k#$aI=nDk z3rwwca2J9e7BGNVPWXekrjLTim(>x)*eV#ibPK2*NL({n72-$$jLZTqi9VBcBlAMG zW7&S|8(?_Y=P3{l;PE2o8o^!Q-B4y1>2-;NK%U1rk33zCGo9uMvQdiE~c;ZJ^$s2Yy9t_jOxE`ekfe1WJOR?|Xzp(A4Tu7)lkKnDq@3oge zae!F?IK5kB&xF%p;IU?Kd_O#Ph*^i19UUv!~e;O)5QUf)~GZy5yo$k$5< zaz*?I)wXEKGFXLgVm^u;DtplNS&3w@us8K7}Kf#&GLBoL_ zH}o(|pzuA2duzxBa7_J^texOH58pYq_RJ893$SPEL`qLXv1RcGNjDG1jUxm*1Pg>( zGkwSErH5c-^M_5J01>TNc;*gm{*L*|K}Mo>1Yl$%c2}??Z#Qz=@H2ZTBSlLeQ!MhD zf@6uYIhHMEPoy$pI$|Ky84C^Zx^&H2DU=+N&~$?YLg*Vva3{NluqO!7v91Yw=o1Kp zpUu4RGfQxY1URsYsAWkDI-NL}bkMsS9-M92zW}B84aUIA7G#|2I}qp#uzNMXLj`Gh73}`5Pk*9ER~1Bf3r8P09xapE8-!Kfaq$>3R-DP`9{i9?D1}3MeOZhz!NSi?PmcVQppF@xH^=RT01h%GZm&cZa z-0}YB*aX>tsKpWwZ2aOoJ3QjbiQj#`f3OcigkFJQ8GGPJ61~5D8yW{2kvn6y39*(y z58WUP9rTdWIgx#noJfJ2Fw;N>j(Fi`B*3Pf80a0wckpPCLhUqv?|U;YMd%mIe<(ur z{trbh&` zIgc466nSR|J7mAfegRZ>W#(LdQvU0llA~Fm{Y@7U$64gT~bbgk5t2J|$Pu zK=0^!98&xsnWj+QzstJ74%a{s9yjU&BChWsx-=i%x_t?WD%j1oLa&iPL>!VopdX=x zv}{H@A$M{>LK}&@i5^aGWr=;$w>@7D0)G>E%D)f+<3U2z3w&XEmr&m? zZcze%-+ly6f!Ug4E_f_VEgYQ%bbY!#cq|3v`sW(8@5F~Ia`;y7>^2T9aAI14#_P5TPuyX;{(zvS;+CJZ;9Hqj}lyGi!zEn+gE$c1(D}H!iG(E%B=~{fPTqJD7(f!+OyUFv<&G&4i z5>8jJ?jf&Ix9MVivF#$-u3&AjS-;uNdhN!p)vnp$?X=0zq1;k;X>s+D*DhfF@yIU6 z`pr$(;*I>G?*e+Y5ANAOnA@)pwM*Yaa)Y=0x&!h^P-|jxs3hJe2I;a8>GJoS!MY*C zF4|Lu(O=xHVPV`yhwk7H+!}ddjPCsYuhA9P0^un!(m`7Bc9s5e;`k|?M;Y(MsOPoV zlR@_L&sV_XXt>Qv1WuL3mSsAy%bII&u{sO5VPmm;ylS&@zRLZq+p}mtiSy(ziJP;| z*LT`%8W+<%S#!2?rSSYl_rB3&7rxO*Kd!?7TkrmS7TP7d?SS<;xP685%nKDzf9=8g zz5y1{+_$BF?eQeO{Ez8BZ9R|k0w=Sd4(dEj#a?a z+sri%Fw%A^W;GVzoQgG;X7fR|bNIzHY9QV zNLF1(hF7$%0uuL-6=8_G68t9Q4ze3J8$Z@t#4HPqDN@v8B`Rf_k)hzjn-FU59XIqw z`iVG5+cB7nE8Jw`C$x)_g5VKq%Lv2*0 zNRev!lM-8^n#xj6Zp@PLn>l1UMw+dTGOGyfz z8ThI#@e=VVsw57L%h>E0E=wKOdeyRVTbcv8{0}eIKe(AeBTUXT78LcTxBE#=0gi^Q zlQLX$y+s~g^GyVLqf^w=3OM-k#docFE0%TW1tP4n%g1@X3M0O*44?oFHlq!ZvGc}U z$Z@&;5JJuZCrpBZ$qXW=9&=G@HiNld$~1FMbUCqtd~_UYD1nA(z;04>su;+s1N#HH zD||8tnAP8BGHAvXSrVu|)3SR@V>;>t`@Br?Me?QC#h9Gy8`B(gLAZP|78W*N%Mke_ zaumi6&xzZckun?z@kDl?JX0B~_Do@nwQ=r0?HQG7-olpb^hJU#ALz-VTC(Da-?ZWp zDmt3}IwD$1kcnWh56vC#&*-$KL1gyR=;YHCrA5l+zgVZDFob5-oAOjM>$>+>f`$dFHL+{h%B2PC6=9KEIuwQ;uy&FuU=E=_%{Nr@}k=DzwXOsc|bP;?WY zm-siKnD)==o;BgCW?_6|2~pfE>!)=Iq*QRTA)F)Dx>t{WIJ=2a%@_Vcv$SYcDG9|Z zR=qMi!k8?1g(o@(2OX2}7>lj>$AGfzblo!(xrc{)-@?sfk5wq8o|sx9|DVUhN{I81 zbm*O*RFH2wY`tg*VeM(Bn=8`08Z zCAXRBQ#D{=A|M<*exi-EV6#@DnP;AN_Q0PXQW`-r4dssc zEl#GyYT$saD3zorXW==x2iSY2quwR8I*k^yjy5q`&fEpQCwOJbYo|U)k~TUgrYsbs z|0R$!(|3}iTu4j-?T3eg7gUC%FrEa1R$b{GQLEN;^h^=(EPUdR9DyPS#)Cm~eVfyD zc|%72p>TvH%S7}KD$&|8AH=!jv*8fr9hmHilRgmZCr8c4?XeIQ>PiL18f93&-?`$4 zu=yM8+kz0BAlaw}OX*W}sKw1fPaK5`xb??668}<>qa^uhlv7qPj^?HS0qY5R@{put z$V@|Il)-djTreD&K-2=gj&0ya^Z_--P9vaybz-zqAgvW2`snWM#>Vh~=lUcZ(Yr_6 zyp$^@V4pvS&SGdb$xDMAQ-V?mV%%U&B|StGr_Wf#%RGA30r&Gi03z5)9*v{;F>Tx% z10~z#Dk!Z>lHNRfzK8L$V|mVH>x~yzoQEW7W~ayPQ_9{jCs1}&T5e}HWRiY( zAwY5~{HA(FqEEFU_{Badf|DuZtr?52*~XGzJe^H(CP5U&I+|Q1#=L;-BBP#PI5+22 z)xQ(v!~heDD%`(HA`DP~pTqOY6(j#!a_V;yQL^|iERu62q^NEqaX|JF$lpL^Z}9!G z5P`=??y)=PqG&n%FWj@?qJ--os1;x$W-+le$fL)!qH%q+gLByYW~E@^BMT>+RSzc` z4o6-*Ca``}wPNAo^;R5Nie$?Imbf}V_w7J#w73b@OBq%xixfF>`OZb&q@4V9g(BpL z+8#jORYRYtTQha?+)QgfjE4u6kNcDV2FHA6=ZNE0LLZC)?07UK_VsH~X9ea#`paLx z95*{6aL$CPIMUnFDJFbTUD8RmEu<)>+cRT1mR;R6gTHiU3_mnq!A$f*fPo>$)EpM% z+9W?z@hH~+p-qPSIy1pFIa8!5DoWH3WnFYqai>HT{GqqcMwPxBS*DYUaf|V)O!OdCWn4UQu?}Fx*TV8DGc@2QM#W&zSPc*MIb@0G^DGEQ&K+|6!P_0_0F*1JU(miTBc1= zgrn9mdO?hHO+~hosP>g@G~z5>x=Xh3$hHVuu#j;fIaAZSqc6Pq2E14gjIB8Sj1{R5 zRc&xm(jhN>JTfdDc)9Rynuc8H)y*J^6fII8AmACyInh#YVD84pV!?%>9bLL=#2Dcm zQnEp|a8q58Z7Bg1N zS|)C2!m8c9SEyo~n+aitpFL&Nn17C1iSajCs;xOo8N8+R+hn3%w_9jcREk>dHn)@J zzp6DqwE6W;h~LN3&mj~Cwx2AA6URT3nnHi@3S0qb)k9R$`pBOOEVFoOTf`}yHIGzV zOQ*X$CppmLCQdI&0vc4+X(s4tjaEyU8wXDL>DNqAxz<$Er4A%g0I5kESxFys-a)uO zNXG2|=MYA6O4B{3;Jbq;`1cr!{UB+2wUshsS;^=8ou6Yc#ijhxWjJ8eeEL$R1{I8z zlm0=bbva^BE@#pb^XMI1j2c?*r??2(j4~yO3|c>gKVGz-5)x-D;A=9X*KU@4DM5w&(*a4gj1(6v6f7rvzRRUZDtms z;$qbvYnHc#nBLp5Bh1PfH8PFLG+?YPd(O#k;3D}t;6tKKd3@{J_OU7Vv#hk#`;U?( zgcq&?K~D4>nA4|akslpe$&&MLOO_aMyhVCU!v+S8*EV`>r0_+?Kir*x+{%{(s2)Uh z)}iiG8W~qvJ7pRC|5|)%*K7B7^;_K5wG4Hd8L61G9m;2!+VF?l(nJ{vA!(E&d~*1@ zmh6A>+!l3k?-L*(L3RY}7LydFP9*VUNdsIM(wt9=ZP2u_iL4Zzq!pR{i%15Xqv){1 zwcS}b;xtGEP|-usowM2Pq>PFQYQO9>HK+-;;zVIIUwD{yiAm02sI>E*>KKwW_e_upzT%d z1`MSIkTkOuUurkmFjLIXJh>U8-aDBu#JlgPacrQqj)qUYpqsPCLM6 zt-z{-?J@J#%S|@`d_BpY8>;eOKz*V#>)yXXp%#emo5)`1IalA-qRja;m znL7@>YbB+_v;Me}u~f?B=~G%VsierH#<0l4#|~4p`A6QB0%sw2v+KS}D<;ZnbYEB^ z>+Fxj_3%cpNJFURY`-Hm0tWf8<;f7qZ^SIu$9J(4Yf4e0=B1s`Q0M6aTJ5<6(=@Oc z)nGle&`EOH8EP;(XCWyu>HZ0I&It3tfs5P|sCvSbmgLv&*;aF#kU#BJ`Y!uNx_~>i z1>7T}!7Qh?NSSi@6RMKVDc#$PDqb;SQ86?qk>r_i8FU#1yXD);zT?vXpBVB_>4ie}F5|CbHx zLdm#NyoZNVb?GiLMK$j8vu5gxge@hJuD;3-6ufNY8?v8E$&~Kis1KO+kiSXwAIIeQ z^45}w^nUYc+c|Zu?)tmIzb;@rK0%{f`OHMp&Ccu;)nmuIiY31gRf$I@D=0=ERw1kD z6VP-V{6ciIB*o|d?$U&DwqWe1BbU-5RVW(6Z8zNs+xH-)m?x%AQZf>M3tT>KguSj zOCsKKwpu<(LB12N0{=rN!)N7WP9ST4fs9$D>7VMnVC17S4i;eW90JHOY|*S3~@2jRvF4 z{{duOB&O$pzga5g&IEC`=FuqPV9l&fHV8|MV(52FphoSLxwa*#eDOA5YycCkm&JdIqiMu?FS_8eZwulQ@FlSEQIm3~AB0VDQ914XQ7eXizKw4qu~9z=Nfg7xEf-kYe@P58cMyxLn3V6;1wi)%v*e# zu28dgkA$dYX+DM#c#xy|gG48%>WyD((7sDiA4uAkMa!PrK_fhjh_0PU$L3|bO7PHz zi}CyYwK@0KocSwcb6K=FlwC8O-UwYbbo8M*W-v^@ZqaJ0Q`WZj%j&xl${;T#Ta;^z zW2iRRz#nNXpFY&j)nSH0gcmnV;Pm#*96a8-|7(nKSh0CZwk2?BJa`iEAvoS_O*Yj| zKOgmUVGGz~i#De+;WMEp@nbg6@2$J;iHZt*<92`oj?)yZ*JFzzpilUc-(2o;Emm>~-BcDcC^ z5$~Jdri!R9V}Q}5iU&9YXqd8d?QSYCow}#Gp@2$E4|APaG3{0#8aY_x?4zY%{nm7_tcJoq06&r!%pFutqcDX_|^Kh>9uSw zXZ=?*PdNNv(IU4uV=a6XS}xUZ4?JV;jKHsFA4nyM*9ApgpyAUkQXR1c|D%s0#%m$$ zzn^q#hB4=^cxZEm9y~u4{av}n!n@sjkoadUet7l2+~^TR~7j!F34s{Qh-)`?spLq@(`Lwq|`?L~>XB;A!X$RT3s<8`T% zyW}<|Q)WPiKbwTuZnE`Jq$4v06pY!KsPw8H0RaEi9vsW1_1d25TaMJ%XUZJLsJOOC8vT*~UEutb3MVNNyz)Fj z1>0)HwU{|ZnK^|!9cCP~gBfYo4>-OGqjE?ntp+Q_I+eaaK=?R-FM_#w0inEXN6SUF zgejq8&yh%^5I@zEFX46Jh~G+f$+w0bzO{6=t#-DN1D-z-dx=4@+30pPr78)gWV%T# zw&p8_oN0m(8gHS$b(ZSaxv0(y&#YnPGkkJ{$3CZ>j@qmKIpu85qM(w^yz?tbzr{D< zme^f@R3ZV;mNn?Sr8Z|;!%9Tgmy_tWYb_I<^qRl?;A-ddKzf#HZ?E0{nz4Ix7rl;X zK2Yu~PdiujTf#g#*Z@p%?i|FyIqU$vEe-RV9bAVQXUF~!Z8FY{jgk73R3qOLz`d$; zw0kIXbqqzENi`!a)!4uRQDbv@<#wH77PqAwgeZfhPnJ$lrm(oJJ_ew$_{n>6%rKYm zVWYG>ep)_4z_?U*T|eR9z4r#UIHNK({)<29;vkB*&Mc#zY-wK^5KiY{9>`1h!|vpN zXcfg}a?7EQ#|8P}3@(@fm!7nX%;?$Q4@mWqi0-3%QWU!06HcItA{AHcxm=-2pe?eE z7FDQDk5QcwqQE9f@+HBSo0xHd-M zWg9$$bJm+Qp$AJOK9nHOoFB@@zxg>pURT^u^GO3V(b8`ZjOm>qbE&zV3fC1k=+Z2@ zC(XCw8Fzli&BPF`y^vp`dYnDS_nN$^r-&*E`D#kSyY2AFe_Z^R=FU=#ota@=5INb{MWJ(6jS366ug52N3F)WEJQA$?nRiAU$Tx)kO<|&Ud21}3 zIJ_l#EN%8)_jxTj3r9$}W-o7$X3-zxHc;Amq*)-z#QWG`$_<(MW3YLVFI?afV0o(p z@Vl2kL7Y)r)oAg*JBeMyR=2#is~5(&aBxwB(6?u1;s277)RfG5kNatb+`gi`w#Q>m zj+*M)w%R4na^kClm{?EZCG|P@6#7GRqiiNNjDQ3c;+C$4l+9?QV0#n#;6-u2D$U%>7$ZBmO!aW83qT@ zxblnaUWzAWT!&Jw7Lt_O@i7Rex1-WT=d|>3kL>i3HRjFvMwH)Nj~3MZU$`89;1k-MKf`fg%EShG52N=?-fAFe7tWLpWEmT0Rl59e`#HPSKt{HZs5Yk|{muTHHWZ zWu^6sPoRH7AQNp^=$651M4>Mxd4$?mrj^YGpF;dj*?VM3p*U>#9F%)4bjj($fKWFj zb4@G2w2-B)726fkeVVnrDMy2oAYRYC@p!Zb!C^ELjG*V!@x-=pZ6ImPl@aq-iksuG zY<<$n1xjW(5D_hhr?-sLB-?ns?5ZT+^HqQr+rviX6!J@*k1498d2W3^ii`xMYC0E&ylT!# z3HRv~C4NmJXMF+mg$cROIidny8$~dfnaQ&9OB~SIl~jks*4}mNpygD(p411~JEcJG zsgMi%qRHFx96UJoq}{j`O*6LQEuwNC8V`lI0gmDp%{Vjq_Cxk!LKbCbp!>c@Ros6v zFVB2k5Q}5)b%jy=4pwdbfz{M~{ibU~#5OkP3t4>{z;iJ%T+UdgHhGi5TU>K8uB$sB zggem7Hxgh6mqKwwHAbPjEOUugBr(K4Dbgev=LKcCpYcs`4gG|VLx`J+$M5=ccL_0` z5Rbnlrkrq}j1BgmD1^HDjVL_P!c|UQV%b^G z{;;LRQyg^wEY%?vLvMpFO5P+0XxfF(`t>S@VDpY+>CHks-pA$C&amS{5C?w5FqUbEyu$)XyrV_5BlK!SDSxQb}nK0+=VcB%ieyTNT)rPZmdS~w$D~`uMa|}kQpmJL`t&=?AgjIIp zwObhr$aFL$iSAl1{3^~}S24TUBzm9GBtVp`gtsMlJooUoL_Rxx1bRPvc-5x|A;>pe zwpM&CGyh{mCzLBrymKk@P0fiz>LbAJ>RP*^Hu12+F367UC^E}*7SNJ|ozR!dxwA9E zQ9g%x9WHby78@qgR&Ifd5Ev{nod@(O$xpM3xnEQO7DtYW-=qIwFHylXdk{QIF(*Mm zRy4_Rcu=v@3Cd;)a5%dNME4GR@;>I<7zu9HG&uNl@8?#+a10zZ6V$3R4>}|*KdRt$ zXg;=^G^GQhSr+yaEMCXy8cN66=!U=Hudr}89w{S>WLt^xTxUqG(FcdhqamTTSh^);%f6~S{R11HJXQ-Ix}e|=>J0;07?)V5$L=jkiPYs} z{oNGZ)q_S}bF?r>u8gak_y%MZUipTgmIzr!gbM9&+|S+~umw`gExme`vWnrWVWd$0 zVY%qMx$n*niNPsNJ7_29N2vQ*af*CzCeWAV{N9#GIo+H%9tAN!*VeW|rRf|oFoya~ zbgSR~L*&V5Yqr}`9)(w{=bI-X<i5a2HWV+9WiX?H-fki|FUl|@aOx}_Vy$1 z9-_sTFoO3qGH90ihg<&)qzohLjL-z*97WC&I6dio(d*kUnKSwvY+m;GeSExydx*XI zJY5_UoZ_v|2+pr{71TS_lr)!EJZ*kX_N-~yoZ+3c#jCdQ^6>B!Z19rQlw}WHz_zY7 z`V*pd*;Q8jEkvO-&nr*3yOv^sLmguWbifAbB_%5>t}#mL=PlW}jYs=@7mKCEqt(a|daU<@B!_d8agW0aLGLjJpa3{P=Iw>6YW|HoI>%A$Y z8)$nZSh*modb60#{i5fWdK}!;pE#JiJY=B(AS8uX&x3q}mBj2}95m!t< zyb-P8Z%9Nhv>t(zh@aq&S#Q24AtW(lV8|t^1R_%@*rRJ8sWhnnn|2T0lpm~MquWIt z*x;)X2tH1a>Q^s4p`^Pk@6mxaIab1+DtJUAAbu-iOab9+)mHT5Q*IX)49YSG7P zF*pY3V1|f8KN~Qd1I>tIt7@>63yIdjjP9FmlKF~=1bU`BQj6B_=n!f#9%UAL>`i#F z%j?AuD;S}yY#$n^e%wv6y6?jj0^3E8st(!^)+{NBd);GPxaOj2 z7^#AN={^6}TL8*Dhge|gK`r7|%v7`y^eyfuUTUX&540*omms2&MF74!`b*~s(46pO z^ah7`BOB-Ov0B0f2q&jtE|B<$)NG4+e*3j`vse`w^jor&#~KOF4X#iph~*+-YRz6& zS#mN^UNGd=VdSEXOMKy0N@*IVfZmg_N21d{HG7>{)ZwkjKXvH#HPy}>@~O4ulj78( zw#bgQyXz_JP;5@;Z^x}vXm67wJm(|W&#Hw>-nBM0Yb@>z);usQF;=z(9vtP#6K<#}q)*x3#Ou1n{-Jp5H1e5mbHMhMLv7=;)JkyftCr|W{b=RKo&}r%$v9)**YH)l9h+rFzgP9GAn4P zM8E!7RL%JzQ&MAdr_Jdmlbu?iolG>L9l3;Z`oRXQ2uxX!XO^yG5>4FZeC?SJ`H5PB zA`0h}+0X+&(9W|zJ_?XAVr8^{DPR&+sM+YOL)V)!szY<3$;qCf&+KX`c0EE&1WyP% z(mq*7eoqr=26X&Aolpa{ zc57G-_Ly|yV`je2?m1asGM-YM1SLDMyW24IsrP(8ckX}}&ePahg=))fa|vK-DTjza zGLL@PBBOQ`Z+~wJB3}N1Zbdz?>=$u&l>k6(&NdKWO|H;-YPvqTu{{W~FkrAASaZbp zwmZrf2VE}KwnN5OOPK2i7r-ZBip?^o`jZ-3_ueK9`zM%+T75H&s%c4wdeRt>cZCNjPTSIZ}z=*!0H8at6c5tjYcF}`0?DQx)5C3j zd8^hM|HFb8lXxM6BZ@7&oRtEGPO^ri8-A<6X*DJ;_{5O8t!PH7lt;k!ZEA8=#=iz# zk0mo{&2Q$y^hzYHOpfP0$y&dTzXhH!xn@%W+0Z`b;nq!Rnid;$d-0SJqA_ej*`vKW zTAIC@4*l#jOEhT8FW3~C7!G-^GbDH=*kSdkTq}_ef0L_FoBOdH&kxfVrJO%AH9#$CI>K`smB(yX*cra1IrsGT(eHHzfwxe=1k@C@gI~x2g6CgLn|ZBA|1ryWalTMPpqp zXuVD-#Yo={YB)){#o`YwwD7>~=>DwYkyio#6ZX$)HW6TMg7dKA!(LbtDcbZxws*<6 zkDIVyK9G@5;FHHr;f65@Sj01d#FL2gFDs-BdV*MxW8UT;{P|^;nnCW>rIAHsn@#&S zyd|Gx;KhVJRpvxyi;Ri8g1hfAl%j41lw(F=GFwjXQB^(4_!Gpp%);+ zQ@{e%0{>D|S6Fb6KYrTMMrGxop;eFTA|ywDds%r@IUK#X)=Z4CS)aM#p&_}SQVOXs zgEqI^Yhid=k>;9^%Oh>Jt>t@Mv`Mt&79Yl&wxmSmIA`7(*F~;}Z9Tkdo=HEZYb;|G zq**KVH6TUbANE=!g_f_-4*Ll-uFe2SH(Q4>U67P=3LMpX9(Hyg=KklSVG;#NSo{+1 zdQCEWF0b0uiXhjG5VOmw^0VyjTj;-mwjD2dnJ@+lWInl2Zk&(uV7L zF&a~i^Ifgo?ETcT8=X@lQO(|Z+jMz216h@a!5#&xFN15dO-BC;)_2!Ar8HGin*#Qy z*I0C;Ydlg!+z=KhJSezG^aNV_+}mr1+g(*k`cTzO$U26(FZOsyWoJP35zhgxLA z+;tEHC{50s{dvq>G)e`l+&m52~xr&Js5lEmKk=f8lG!!}dc z8>#CYFb9QUXj41=qDuz12+i57|1g)ZOato?gnbmw^*@xv@B1;H+;R5il7~#=lWvf$ zii9jYLJ~}zMSq$QoIvx@f}P#$%5XimUCKG9G&I@XrJmE~2>7NsHhb;MIeQ&yw>2jR zuGIC&T21AQh0MvYXt_fkJvDYPAQnI2^<6&AX3wnS^Ku?Uy4?-8(oJwAm>d<)2iv^f ze4ioP_#-Ce^&h>PMjWbahAz`Qsbv=b3b5Y7BTo74Kg7DeFB}!)h1DOoGR*8{UH@JR zqFn%Xggr7${FINCjhPoT;zedenQBI??6{g&X~OMplpupR(_= zbxz;o^3WeK=+fHnAr8k?e64Sn=E$+%m+*f8h(LG0_c}tp*WS0c{nezcF4Imb7o ztrxon=Pu{cYVx@fgrR5{5Yt`} zXsB;mtB>vp!^W!6wBnQ{-xglYFJIeAZBSm|9$>rR-%0wn6aKmYrbuz_Vx6o5{zV{k z6v{gQW%G**sJz&gfl}NEv^@^kg4PYVw;8JjRKptb2AU|)j~;`fVZduZtQ+vXWjf$h zsT&6hs~yPW!2ySXli)ga4ivgE$tj{f@)U4$^3s98#f0Z8cz<&7T?0&dm4mBxU#;X= z_w`DS^}kA4C~eg4m@~U-$@99eTS{f3U%BMirC%TP@>j~$ONWQx>zACSlq;B09TdBU zsg9X?6|;~S`K8IJa;ANzmwgsjHjnwKHa|7%^^X=)#isB{xUX;WeC{ipUaWEs)Z?B> zg=T_%<#Y9bzDHPihj&eIgioEl9LsNn7MiB~uISQ)C*YoR??3@VpXc0GYlsl_i?N^?ZNWGOp2c>ftp z;b=?k!ex!qKj>3;OQP?-eBn+vVOpE=s^s{~Rl#7{WR=*%6üSXa?6QJaEBJ0HlHn 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≺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

YQt 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 z zP=I|RQgYC~Nq{6FWSg)iqQf?dx*d4W>Yk!|r~!z>)^Ol@|10SGHF*Qv01^1{9J~|A zE(HK8^IO>myeG>Xh8t>!(r?rm9?0H`%|Lj zbphUdz@CLXhu^<2jdK48pZ^5wij)?*}>>t&2Ny8 zuodRU%a3zgWc?C=4`!@HR-gn%2eRQrANT-3^0U)|*+BzL{b5Ll{05X`x!xTQ1krU{ z=`{xYnMQYnbqyq#>(&Ao18CWdD_ntRLPnbZ2jBs`&!-iBp&CZQ!O;TT(1d@-N`PMT z=?Z^W9`-RL@)kr3QPs#lMFqclzFaxtF4S#ig`DJ5^|p$KoU}96FC`7Rj|(@6@;miHwHVd8W7xLqRj+z z3g;k-)PwheydA->^@#_#^=9Vb0`uuY+6KLO064z|$b;>W`qe{$UZ4>94Iz)<_1OYg zA?qDDdV-Xbk68SU3hAaW{T7TW^v3{%2*x)P09hkK#*q6YKrxb$%N!^lZ(zP)&wC!< zs$@984R2^x3NR`ha~tS^(R1+q8)Q2q>Hp;)Iq2t-wX_fxTh?e@2MR{xKH`@E#D+BNo8kUgol} zrh_xI#V_B}_G3Nh!BWKH??KwOQW53xYXi4Xfz|-^A@wgriP=Fpz{XSuquc&&894gc zk^7E7AZf6DF+tz4tJt95{t#LPmZSDP8vC1XYs2rT0h*&sU(UfT@W(c7!BW9^UfiJf zcvkluE(YE~KIH~yx4=@9MrQLry#(WC4AKY4?sk+F%&a5vu5qUpAv0Q;sy_6N`dSE& zz+NAE(2L9^`wJnpsR5LwTAw(8YNs9G{*=3t_iHGXupJ`=k9zYkMJ1ri8~@qC(L3|q z^2ZfS$=K{8*Hw~VH^^(d8qb@#P|-Z7f_9;ba3;#^i*})GNDD@6)eMat&VaZG&H!x6 z1+oTAOQyjrp}QrRsquJY^?k7|$b4TZhj=zs|BmiT}(?v{jrD15$NVKOLt$7xrH0ADVy z@Bp&bqZICrNyqO@I32E~5l^{OCwkGQn4d|Y+?^c2pq3o2VGvKbxRL^>@xQ5;h!MS< zr?Uf=vJZ~OdXczWvH}>L9k`*0_6%X5jJbV6oNJ2H81OrK8|O?Bv-b_bpbYl5>+y9* zdu7b4rnPLK9XnA+z8jAKl8r2A{?s#sh8&qCFqo-K7OZKu2IJTUx36~~0 zxh(d##SsNw*p`sEG<$nV5f2>|Cwiq25qEPrp$ND=B50pzzRh{~{@eI2GuVIV(nD$d z*S#H89BW?1;b;BfIv(l0;`Yj75@q;J3#H-oT@iRKF4S4acKwYB^dZf0KbO#(oscZJdN4BaMhFdQ%=L3?}G{{3b10jxRo?Y zmXPBEUItItxVKa5bXX$7{p>Y(J{`apVMPa?{amEpGlT0}jDUH)8>^yf{=C8V#!GBKXNm!?B zu{ruGVT~O6t9feAIobqa@MF?xfs3%C&t=Ds>}&&_pE@bPy3#D3%frPGK8g zl?jMnh42&IQxCu$z4RhB@|!ngu{y}Iy4j1 z0cw7W1{1PB=>Exmm-S?&d|z}_x~$K#4POs~dt4*waNp7W`rend(Zth}M>~hg05| zB?IW3t+glgZXfkK^A_*jv-Wv(ZTXSj*!M0V8-))9L0{&7*t z&U9*$TG5R8fkmU%D-HcV2DzanOibrJ;{L?1GObmoSRvw0ST-I4nZ^ncVj^_4pUOL) zy6S1_2|B3;sTpcQ+)%U6H+8oW{*BPw(4I+{^$w0&;#Klfr*stg%uqry)nQ?ts>yN8 zVVOs!Gq@pl^`o*DCD^wi`-K$fSymZz3~VT4l@&h$VLi3w4ERHA!r@&~h16+Pj8Zd- zFR_vbQnW<7wf}_m4?rm+qhMByz-}D5wS8N~<6}+Ip)h{K98feoS7ktrHSW1_>DI> zbwYYAtUMN*Syqk5RFiKt4EJjSI!YPm#>1CDr=|v|YW-m6sf0DO$E}9Mdz|s`eCBvq zsv0!mK0vZD+&r*6N1OQBC4|zkpyx@dN|4)FN#WS!m4*uo#A`U<1AkBKN7WVl%uxXi zKuIbVGL!ux?ICk4y!b#U6P1Zz!#|@c-!(;>9slTw;`_Pl*Rd_p3sZVSeItExALRLS zbBNSjBMk~&3N7WfWHqxivtVC%3v5P2ax8IHng3*BH}~HiTye_TaZLr}Bc%y^3hq!x z->)7Fa=|?SoJgQpJ)3G~YW*NcJTj4oNTFPad0^!6F2eKxaZ?sUGO4tCvUbq|rayG= zE-x{xh`K^6C(*2yO8S_8r0G?$I>;Bg`^zc1l#v;e&7vju^g^!t(a zzCZf$dt3bS?YqzMq6_icxOv%Ixz)g7T{)6>!U5PM_nZ8VJ%l8sc`)m-xu#I9dZ z!$i{}kXnOvO5mjb>^U&43P5~KOu5nxL!Wb18Pj?5%q!ici?5q z{exw0v{=UrnI!YigV3va4SD^il>TL+y%k6zEE_N+1#kja<1@r7RQZ#YT{#Wg;(#hy z-GQB^9yhMF;yO1Pkt_8s``2X1q7B4uzbchev$1SK@eK}!E!FbzR3RLMl{)&NRbt_f z2iHRJeJl|8o>mBap-WVP*At*Z!i5o`*@j>Bc8gVo@J1wG+DE5KVd5#EQAHCrEwIESqiog2_DnW{ z4mP^&?*57w6ma~rWvE!>fF}tr#Mi>#Z?)n7!Td&hA-bEwPu|rP;Q<9Q?n=}XFv!VI z{>c}(dg{3!ZU2V0XGeG+{P-4(|*T5OVtxt@*!xD1wL`b4Rt!Gc?o&?N|Wi+3k14=g)SkMu>Ss1AT2Bivm~g(nX=<3uTv89g3|P7&J-?h-4~vLvL<@2d>q7~}`mg*Mt50JH`)dyL?yB#Ua_ zy&VAk?0JK|LKy?%nN=Z5zt}z0K=r9(|Arn8D}NL5xM0$0S+Nf?V$CMasLK2>=1SQT z^2^Ghn(?w|VKZVw8c0d1xKOn74qIjbihJrUs6fp#`hRs-B?r=7D%uIq!^tvkb6s!w z_m@Fg=)vAEX?uu^(rnY@@lE|mfaAuTxd+NwzZ-KI3DO0dr#@EiA)}A$?c87G|Jx0j z4s;yt4uQSnc}PH|0m52tzzNHICi$$k#<(%ORhKz)B$fxWjOLkX(u_%h7AF09r}w8S zy#Boj<^=mzAKerlIBGHA1v)RZl7}xbCz$dTaGM9eIodc+PIMUyRsQL+l96Y_J;5CE zbMMC(S1I-{nHFW)R+M95{I6Q2hQR0%5}+5`g&Zjt-_pCz&3pZGtz%iaBkz?#WO-}H zg=&b=9>^Yt&DGZ=ht8Y*@WWJd#%JE^VmINIu(~fj;q0gT6I(sQ>s9aFRP%EGTl%3v zxV5*ZoT5I>$Sg~^`;CEmGf;w4q2MLa*_9*4;Npa|;?(h)#D(?^&Gn7;2@$5tkYaMZFEIT!rZzuGHE6Y;gu`q~jP zo>qIv{k_o0&8hVX)#i!VNn2R=R6RtAuoPn{&6SSj;G;Lt2sbN`^0@96DN~B5hgf)A zQPVd&@i6v=wNDK)j?I{UHYCG*wu|@a?hJA(a7 z=L{0+g>U4gTkmN=yA~zb@h4)EluUa21CUL3M-2AsoFD%}2{ci;YN8Q0VRdde!KEcW zm%cu?QB~-SIo26 zx?;eNWcew0+V~ZHb51mafB_`VSS!?N|9L4hnzJq0W6z`Aq*x{G9~)1u(?S8#_x$9) zef0M1Dkfz!Vwb@QZpM}V_M6lXs9$VP^YId>tf$Zla}wJl?QkBm93Qwm%l0FpfIPfU z^UtQ1+5q0}Udsc2g2r!yE76%Iq=tZP2$!}o{f8})_e>cT_$^BceX&o5tmCY9 z;VI8l7`ihDt`Y5s9~d@0g;2RunLUQn1v*@*%uZM2B3Fn`@%&7OYe5bM;t5;Vc$v-q zJc&b49}qn(a9Yu?pLoeoDh;Z#_dcDj%AJWGWlpk(BIt=MFFEgC0DiQun|xPvd1R1n z1a-B1wUi4*1Xf$;L)4K->_xY~5(4SZyQ%|c)?wiNqDVV2MKKuCF4P*m-%XBvhH&EF zisI&@zAjM=4Gf9Ku@vvrI zSR1S^u?@vyD)Bnu>IyUbR0R})VvmWrH_G~m>1pCm6|;#C`23@TjwbS2X+<8|N=e`> zKd2)vwW?@w^pkaRsVAx7s2Ro=l9H1S&qSSMBSMZ6F_6ljFQ^?I6Q#nPWnk~vP0fr2 z)&IJ>jq=HbbtxJIg{^%}BP*cNpK!O=kn>fT51UhP58kf~;EP+P2{bjR8Wb&kk6Cf` ziUW1&nduY5zxXKvYR~zi)Kx$a4%MShpMwv=^oR16sD(oYfZecJUo|o_dg>*2MCwd! z=6}V zRF#~Ijh12@np{mfJvvQ%_g~K+ z;FhYjwpzM8J3kym2SR+(7b}T-oe^8!K4i=ruL1Z*!&~VbPH`vUD%N=pz zaBi&3H?(@*y-d(&7&loo)2-M28cU~t(BZJR+}v$f>tr{!eq5Z;S!;^7?OkJOGPS2& zF4|~vSPQp(SW9n;yV$)5#4XLmyDcq~inarvC=F|9Tl3Nh`INd3u=Lb_#Sh@DdlUIh)*#T&D z$#IgzmDvzLE#HE7oEmZP34i=Jkt&T*iZ$SMxa$xfiITQqYJ$W z^y{+;M*;rnS?o6xu__6fN3j2HIjIg4G5lWh8R=m#Wc8S5C;J)16Et+S)b>vm5#q_2e19|)f8#mlr{mmcT+B(4nr_SMxsIHkmUqfSLEdpJnG(C=M6k8~J zFOV$@4%FK$bR@@H@Vt>S!s>vaWLTwW0`9lS{S!F7lc8e{a-G?df84%e|q@`>3qJdt`CbH9>U5s8>)0x<)Lq!&9ti&TO4GFZ-yT;9oWC(HbROW8f`N1@Rej>C|3J;~l5t%&BYT-ZI0+06xSMENadJ>0|os8H9QqUt`r*V$A z?2`7;6An5xyB;w{W4q}Lp9lj>YRCph6$4APe---HL-60tK=pobFKYRyeNgO{r!+vF z-EUOn99fc=2F=M5YtVvVqF`e3(DBL8n1b4*et(N4hm5_I3B-HxcSP~;NDy=N^+oR{ z8P{jKdyI0MNe(8%oV*)kW$F-4;8D|Ak2-=;_?6#=Ll6Zayg%n^Y4Dc)AZs_(t1|l_f8|k(Vy=7ppyH@z}rC z?n|1{%X43Oe3TeUHo4l?N1sL0DOOJ`%1lYds#1i65Oy3UCfX_w5RaqD;5B*4=E2x zITMyN~{70SCVLk`VAL*aYR#Hbs*2?S3+zb(rsrm4ZLdR{O zQtkhoJQ8Q_?tFi6FSXbL!r~Eh$w)@1rvGLfGzmCCghRlM*?Mo7}7qN10 zDk)a$X1sjt`!gFyDRz`kSAmm69?q@Tg+snMP`Pi$jCw`Ykz#bcFN<+xi&`FC zGI%t!>3xXyHy|mm@SXeKT=KQGEzFry#0x|6`$q-7L*8Sj4&U7!g6)WYC>k_`yVNwu zT7evDL?Tr(k?8Liu5Z+=o8 zoD)gcG`q%_y-ME+!1|ErkcRnokv3W+eiau|MH_rM9)28k4AL7QEiJjMv9}1Em!0f> zE*I$M9FGK%pb=Qdbdo4-+R!d%b5+^xL8@45O)mF2DW=K8 zJchRD!m8ngTGGrx=z(=f=n?Od=-lT_j&w^<2Pp_Ke7NjZ!a0GQI4=y19KXnpZm!c&}7D%jY); zAM$N_Ywa_AVPoudX<=R#qSI@fNeJ<7t zH^?M73c9D0SFNSL5EekDbhS;fJoc1lvkuOparij|vgY@JhtwOVpY`De=WbNF^bd0< zR9@*UV1oMH?*U!*8V5yVOEF*1mq{9|v)x`Zl==c(XNOq!ndOMIt<6S_!v~9fL`@Y$ z&qi~A+VaDHM~v^bAJvz>_-t|IRZ}MdZdWJvvr!XCQ?F)(1iM)e3#|U5RH6bt{33)7 za_0+CKVPgy_6ez$@Eu#423$RzYRe^+?>l~nH@3}nqZ6#TtG%5LB%vKumz6(hTvKfb zJe;~nehlRa2EjjCzUp(1f0&)lc)_!Pr{l z`>@fr)rCj)o8LZ4`hwqLQ?ifHnV~ZIfu8SrT%|l_F$-8bjK`2>y|&n0+mJitDKWAc zo<@GXvSjZu)p?+Y*5JKTijy%Mi1>SF%-&oaC_$LPad`jFR1(hz=(@0Q;m!UkmywE7 z)Q6SRNxn(9$^Fyz>%`x}vayn2kJER1-lYbDFG=>wvB#??a>Z)ZXN9QE z>g@`%>fY2EFT+(n#&SgsQ&=WNj+amx))!*UdJxvDRtheHgoO9cvYdAENZ20smq=rv zz;}|91=lyPLc;Pl_RmDoyLrwG_W{_&E#J!Hw38eNU|MXOvE`k6FHFFzok2Pu$>0kM zaNC|$y&^W5?{h4FHs!bP`P|Va^P|UQEw4G>@7k>-?aVsX--EQUEN(x$bhduKWaPB_ zEV|7sKe%JrJK^n}D1MCY=1{6`9(5v@G#Q8t%m(JT>76IlJQ+%@(%K6sQ^RHX?haN< z&hynX3?FU?r8Hk|{Jyc>{Fl8q`_nxL>QOdxeAXLJ(PVBbVN*{&kXOpSw(&j~n^dnM z7-mbHwjkoP4YT{qiF5z`;9QHo%4@@WWBE0zx_p$yZq*Zh_8my}@HIbAU_t-;G7K!u z=ViLO>fFcoF(^T856#maVRkBA_x!x}Vn4(=#|qnJ()Z(b*AfBEHkwMBZ+;5MPIWjt z&}nbhfqX4TY=83DnZyY{p&@x)rT2PGEor2ZwX3XCwxscIOF|b|Dtn<7{~Wt zmCo`8TAnejNIukYX8P}WiHu|}FQ3jW=A(a2Q@B3b3Gi@;2slg+3o+VTIalbsPr7AQ z!|W%uok{8A|M-X`6_!{HJgQ#SMmAn>t^(mdcP`@#sfLR23}&lnRtXDv+{;h%E4!SF z9^O1ZB0flM%-u8G*k0pyFBfd(B_S{QF`g#f-K!^oPiqJn52Cp7h!dv=o5g*WCZo4n z38=e#Tfn0%g0Q&^{V;a=iqqO_Q%1`!=0#tt=AsnuM~moomhI8ajBqrtsVpR&lG8Z@ zltlKE;rkqe_UCum;oy|tH6_)Xix=ABF){iTn@gM*oy}%qOI76~D_V7vdyO$o(U#7P zA0J^gf19s>{9Trw)%h<(9q7+3-q~_4BN;IQ3l6Qr?pK#w$?f$lavt&=Qk}jF(NRfj zo29^}jF9{Jm?$-e zihgMvSJO6p2zNdvx0LXm?#l++Al1mXIUp~|6{onJ7QWO+z{;8-5?1~(DCFZ|qqDNG zC@7fgAuTzK+d0{Ke;dYPZ?Vb22v6*K2@kb#05Sy9l%b_45gM!ZE^4i@NhwBu zX5n`xH%)oMxP<;n8(*24q6evg=dXoM^L3Ssv6%9`jc%?+s(&q1*AInfDeq2(uJgQS zPlfNZTbKW?HnY5&%vBD8!sc!Tcz24r*l0Wtrl@r^XbhTjYBN`wI^SL%0-x>! zY}zp>6bO=aQnMUS<_|*c$OeeS#y3uA)?;zrw0hq1z?z1BDs5Vir?YeI9!j2h@c~cW z)^BpO^d1<~~sZP(^*e0Ka$-!8}CXw~Xdwv^b55CHuGRFnk+M+blcpaEe%nG$%cpyE9M z0Du<+0H6fm1AZAfn=*QEurX>FN!dHQh}he^IJ-C*IXIX)F_?OoG8o(2nOT|>|HTIU z$VLCY@BclbVkTh!2%!f(312ad3$QcWFjLxUi;D@br4E(DA4f*Ii{(^`$IR328%VV$ zKiy{ayKhcmMPz)3Ay1XD!kB5?Qv#Ja7AyO9GMrmTj`wKRWy({dVYTLRGkGEoR2xB9 zjbDb1j&+>be2-B30k;g7_#l++${>!X#D;l{d=}6|*C;GS>4RAku-Wqgc26+1;_)4g z-|V!G?2lGUe}rxkS|difFFV5U+VeY7K8jsJ5AGf6PLGT2l~=;OF3Fz8f3%y0l|2xHi4wgxFe?6o4UevBuNV@_ye} z48gj@#eY2*Hy`e1-^r|#QxT9y7j)goJMsbUMRw%J2%L-G41`B;YQ&%^bX|RukVJRZ z98qzicXzZr$3EWNuv6*coIZSzG&XnW8hjikPEGNCfZoio5@CB;-;a@0GvM$_i!au4 z1*zi7lX%LME6r%|OY@JwLyVO^HX%V@q2ZJtrPC7UTvO~~yinYDu(C8PP~+rjkm01&ePX%}jMYBaQBy#P;1bbvI zPL>6{wV>Hj8|FClCHq$*X~AH2!bWPS#@_d#?=}mO!;u^MgVV>xLZCJYkzz_kL&RJA zi_ypO!I5u)#?i-u!jYT#qiYk((Z#kv#McOg)5ZRRD;NN!ZWJ2D7DFc1-}vcL-en%G zAxE&M)@s~Q<`Aio6n#^cX53+A7pn0WW=@1v=yMLHkM$4+d-3qx!%ewO` zAh|}Zaw$=cN6NbXD~upqK{o_T4=Bzt-zVI}9??G6XK(Z#(Jt3#-nTg9`rKK4&Lb;_ z#FP9(B1#vVhdIIoXVP-_EXW)K4BUH0a>D+$pY7&6q88@1WPYynuR~U4GvJY zZd+M_DFzrX@Hx8m2m`v*{7(!L`mG#;H)sUJ2w3~87*&h-d`kVCEmjiL7+CkKSoD3q zMo_ypgxE#};Vl4z7tCmk{rpM&{3nQd6z(f8trzAG;}4nG@IPj&J3P!vQL^Pi=zo`v zG@`|Sl}oTpV638Px1Xv=J(Mt>#>mVFv0)>K_m4UXbqq!umdWSRxmK`6sqqlftUS8# zT%5qP6pIXX5&qg*GL7Cy?QN@Fubus=ej+y9HTl<9FYk$+SXajOL8-oyFnv+o98HJ5 zu5qE?C8x1|fqOtb!p8Q&VYgkpsfkBp>cOpvN1=xoPsrN1ToUTA*@_b({I0V*$fJxBv0Si`%O91IJK|tR%;zyU z&@@G?tivsYu%@c>=9|Vp3wld-!59Ud)AP0YWg% zGyF+d`tYPW3=7u?Tg?6V@MCdlj^NFU?c~gBVy9=TimXk|*_RTileoB**l^?PxVrA} zbG73yDzJVEftrbb{;Eb%4w)7!Ef}Uy4Hj!Ik(F&@Syk_+YduIA{EXjl4Sd^Rw3KPx zCbY@sBMC`bks!4SFi}ouPWPS?PC7ce@d?HV{b~BkNtz2qxP%h=KyGNpoW)(_bPlD*BYRt#=Ahp}=fx}NhpWXQ?w>SaKGu0!6uR_-QM>>_Z5a+b)ZjywvD3n14c z4V;59zx~f89$~%gr@_Fv0=OK*;G>i0DN^hh&}qbDTzc0Wu?hLbc`suy>>ZQnR?BDP z>Rc27R?Cv$*l!${vYr4`;Dr)vW$ZjL_%)f4@?X5?y;;mHZ}j-AIZP{56a=vG(=3NE zt0)6_FBTNzfFPHs$^-Q2;$wn(pBe{2+TR0fJrJ^cnRdgn#{`mA_Q9MZKD zJjBAYvQ{$4;?&=h9*FFusafHq{bvGH3TxQsJZ|i<-{7R(d7AhOQdMqaPKUd%X!kfm z_r1z$Dri4CBSc3di4d#EhCP;W2OsMo)ofZe?YGbrkW4ScZL)Hm(2rvZ@uvD`D|cbqUb*uYNdat# z#KY90eWkospy&re;ux>5Bsvvc{*is*egQCJaqX;I;5iz{s%< ze*xZmq41uEw2BXbJ*e7wAgOrnOqV*g17M1$)CpduPOLai_4aGVgRZ(L2|wwsY4Dxp zRiP8{I%zt>?ASP_*(!$kh@wbnJuyE6)5V8-0Y5ZOXnsvetq_7H@2oq|8fK1~o*Dem z{GYla1_XK`?CNM7Sfipv6zr7+z3k~3J_(5kgLv4V&>t3*UJ6HaNp^u!xML}Id#CQu z9io#8;4_kOJVP2$Nqk@+T>w^vkY!2eI-$$0<_1RkAGGC-wd=XDb&~ zH=6cUw9SY6femAbasaOJmpw?K6!I_sj$x$)XsvPc!A%XyQ-Lqln2sq#LI^k8w z!k;62^oYPxk^BDx!azO02qCQLZM@JdMeX7=A-a{q*9gsaQ21R!-jmdhZW3C(O5vXi zc|TM5M?$M0wTp63ULCcUxTjT53SZ>OTS4LTJgv^q;8k&yrOt=bQ&pnZr(JCll^WFT zm8ZgRYO$4QfOR?mt&_dNVAN6w*_jwl)j?dWDGf+UTM$hUU?FX4@Ro~9jv7*x+0u@FmXzC zLm#U_8u3&;T!N&qxKvLN5q1Y*>5UoWXaKI`fIZM<6Qw7x=!HHCf0xcfeMv%{vf>qQC)+YOAY{;t2d*|65MibD86zHME8TC;ZPzu5ZWCCtTafGv?El! zay?|%Z978A!Jr^KrhpfV%!fhB5M3xkY0`suN*=slyH@aeNc?&nm7`!+$zixJ`=DFH zvEBpftPm=UfCdl3p-35t13*nrO(SzuGsL0y%wwn!ZU>cZX3!3L8XP^Y7Ylo>cO1o2RmnT9YC zP>(g@VQi#8@nPnktsARJJyW8^;NP!^?p%4|Ml`EbaJ z`D*F|>Z6QIHqps8gfgX+eRYp%fiC7x9Y*qv`gdq+4j3FVt;5lG<%iD44wkj;L;)>W1T+y6&?p2H3I!B}1mwg5@*4rQEX;&Ng8mkv zzvIx~O7sWeWfS@XGp>hcgtQQ!Q(1|qBK4;jAk6?$b6jPtHGD6sEX3dQDnIwa_sq&K z@b{$3f8y`am0#lTA(j8a-+d~-!rxsh|Bb)fR(_4Yt17?2-{qCxdWDA~HSx;ta5-A} zJ^q#|e*iev2?`auMnalG0*ewQnlgN7{gFoQ!#&!cQSO6L0r{L9566)xk+=tki6~nU z(OiZ8$`DmA^mhyTdkOswL#vIs=&yb^`XJgzYKS9^NC~8TDS}_U5U#%k;iLZA-iaJ7 zFvFAsY6YNHpeX8R=8nq6s7x*+@cxB|!u7{624G%3FfXvK2!4A*xPBbNqiGM|Lx2xO z@LLwb^&M~r>d*?WcA(w~G)0G+VW=4{ijp)ThY|m}0FDSX0lh2X2)yh8b>&k;OUx2Y z&!K?`G!S78L?Zaj58?WIJ$kRuj2x=wK-HWGenUgJ{z8vUuh7y7YUV=CT-Io=ZLe}8 z@S+IRtFf$CQ8@|?M4^EwYaklIZ;c4ow_?3Qt2U^b2UYVT`0WnidcR$-U;*WW#giWv zPkN*Iw!O-az)L1jukI1_Udgfy4am@d%o>m*_>B|c`ZEQ+R|RqbR4st21rhvah;WTc zy3|kaQcR9PwHQ>3u@+;tU5Z8E?Gz7%YpO|q3gtqeE(GdAMqL=e@2LpahO-bA36j099te}Vr z4pB)Fm86Mg6wr(Sno~e?0%$=2EzE7{ZMLKpS`vy@6wr#}UPTdA9HKQvv?fg?DIm$! zY(o)kNX=>rs5aK@K|CO_qK?$7q4jDApq2t^380Pw@C9q3Bf)p1czkiKj_(6LR30nDI)83Zts0%j7xEDD&# zNq#Ox%q2DFQNTO`ID!I>Ab|N4FrRDdXo@(R)LcXXiwHoW0EGY+Q@~=btz#(S7(2g? zuQ;AGa4fBNECC!x0ml)*QVLi~0LN1RZDSP$tl~Pcnj%&k5zO_sf{i6soTo*A^EHdR zK>ON88b5=!aRvcwpnweou#o~b62K-3*hBzlQoxx6u$clj6Tn#%a25e; zO#tUmz&QkPE(M%R09z?wD*>EG0p}6G`4n(I0bD=<7ZAWU3cwdkf7=QELW;kT0Jc*A zzF_`*i6+)dNwte;wTlSgVhXsJ04||`O9^Z&08tp zR<7o46mc7=c{>H%ZmyYp*ds`Waoj=b-$CnBz?~FuCjs0=0e2C=-4t*)*O_}L;vRc% zds_3hXEbknR2PS~NXKUZf|3)kRjZ@@qir7t>e31fPB!HJF z;3WchnF3zs+Ioc|ULlAwQRDt9MZ8Lyc#Q&HBY@W_;B{^wxQUs>t}60Yybm^1QL*9! zLijc%e47B?p@4S?;9UxMmjL!qz#am4j{@E!fcGijeFFG^0w~*0DBu$U_>=-ZC4j$E zz~2er9~AHpPHdl1#Ah60FGcJnO?*xPpK~?8polL>&3{tBKe?J;QpA^}=D#T5Uj*!(!AvQtx|O?|TCHfdYOYfFCK~ zM*{eX0)8TZpDEyH0{Ddjej$KgDd1NE_>BU7BY@v2;CBMpM*;ZaQ!#l0>bSQ~7FBPK zuvkr?kK{5KlbBo%Ltl43y+cec@9Q>u%599YrAArc<@$OL-`9H#eQgDOecraO-`jKio^hsT5FWMdCHFVlpPsmQltDEPdUtnc(Q?G2jIBZmg6n<9B*M9J8B$X;idD2J>?sW zvXe&nIZyeiJ>{p2va?3{DNmW7Z%e6zy-T`ilyC8rE$t~=GRm$R~oL8?2`Tw4TcR+^3|#mQn|MmkiV> z^ZA^&q=2`%0@l|-(AO_)`?}7a<2uH1u*UJ9mWXaoxt&oC(I|i6DRj9h4%BbLY;EFM)@UA*~gx;52Ku*QT~gkJj$N(C`LI^ zqx_wxJkg%=L`HeAMw!RQk)8IGI~nC9jq($o=a=@BUoy(c8s&!;yKQ1`w@q})DH`QI zp0e7WvYJs&)hI=NoFnZiM>5K38l}KfPO_(*#3-k0lpa3P&eJJLEYSfdmK*}HB|JuWw!abKDc9Lk zu49yQHOfc$9CmG-(}@m1I++JLd05XyE za7_z!5B@F{y+`I0h{=@*pIn7L)b9~Ixf)$9Bj<=EVIU%Jg4*-fS?DqnsO>4LA0!B;!g%sDgp23Y6cgJ5Xdt*P zt{GM^F(oG$*tDSI2V(Mc+{kRyNN%XMpQw6^xJF{WnlfVB01nAMXa+1>_9dpkam5g7 z>0R2=9Mlq=U#lG;s$DE?Ni|K0X98IE%MvsOjwws1G4v_>QEPA0*5*QM0Xa}x9ghWp z7Uu;_8<6pMAT7vfKyWNghB3YESB?OxkQ@T4Fi_$78m0=#VW5KPnjA({VL2>^G^zza z6_F!Al>=0Gm58Y#at=_zB2mskR5@~v9Krq67TO7{xP=HE*B08y8rEYA1$(*|PA+D$ zr#iRxq%*|!vMHMekx!=!k!n|Wz^vR(BO|71dRO^&eLV;S5vqBlDK|NFJiv;Je+uc zhWXy(f>HKWxhB~^&B^{r!6f_koa~?CW$#y>7KkrZ6VDlx%XtoLVVXV1uRJSoJ~Jhk z^O+|sK4a4JX>Rn~%&k19aPnMOq({291wHOrZ>gL9mAma<71zHrSSNPdcLMTo9UL~Lc{tuF zsGeJ7pL4G)vgF()Zu;NCZU5JE{qI$*$B_5681ft!LtOE1>56}jSZL%ux|qd}k3e|O zix&IV<}f8rbC^SmwK>fEVtaWmF1EyH*+Cc;7v)?Yq}>Cv}sgZbz$Exvwkz_dA@m`^|DFNocvwo z(`vW?5CG7cLJcc z`KncFjmkxBOGR}78v(#r&haa4Ak3gDXRs;&N^W3PYDkr*S(O@76;b_&q3T#C+Yv%< zsg7;OwcW%+S6r=2?N(fG{dZbHeA@nmGLW@0gB{rRJT#Ff}l$vA4 z-z{@?vUV!LmbP##d9##@C7)Vj3F$As38nS7sn*}OaDOX2WVVU8d}iT-=b!i< zgmM1)x^@0ZxZn+7jY~6)%d5uKl;%(HBv^SS+Z~X7uJ$XdO=~G{nMseYrStJcZhU-T zL*@?#UpmQS8(*Jt!@I9rU)Hr{<$t`+Uu{~(TzDCP-(-6k-OF@}6PaVJ^k{n-qYRV) z)9w=4&4((S=0iu9Y4f48%IxPumzQz#A+5bir}l<4)!Lic)V{srn_A{qC?vs;p`@32 z7q>Fkor~CEH=mD%2WM>{>5+3CV^wy)+fudIv{^J4(_E;Hd(<$4@isKudotZ~TI znxVJb@wDXp?t0dRC0ZArGObxOn{Mu8)APxi;ZTP)!?WcUn|{#EczU=U&sJys9LDrx zRKno^evc`^uv&_hb{Kwg4oCZx=;<3GIH7qb$ce%W}HMPF^$YB|HnjAF#>RWK*2! zUzv9QYN|QT==SNfe`V6gRP9M-q7NUZj}p*HCDBPIqKg{ch7Yc^*UgMdi*CHmx?wgv z*{uzKS@_qMJ6aQY9DSPEYFCS`PO`JrNyJt^No%Vuoo%&0n+*&mvjL-&1_JtHCZ*wY zn$P4r)Hx0uWE=EHF_vRUb7C_cJBFLtk0Vt&vnu1bRl_`nn!q@2Wzd7ogRIiVQDw>< zUSY2Gf&}6Zej9&i4nC12KGBoJDXVYX)6CvC9%*Lrjk(UYz>CI4oZa3_ zXSXu{)OnrV*?w(siyQuJUC+6qj{GA`NRylE&|H9SWP;D5TL80~GkXA_c4Cz8zm~^a zr_19@n`{2Crn%-1XE(R^hpU@g{9%n7*|c{noAD;y_>}^?p#o4ls%jppzD7wp&F3yv)L-UjN2-^+`3hEImhct>yFoz zT$NMz$Bx%_DjdIZy0)PC1>fM+w^{tk85;a&3^(irZPegD;T@+l^&K+nt`?ply~*v6 zeQLi$X4=y_%ebd?wqfVYx~C++y9k0BXhT|BIM854=g-YY6Mdo7`Mu2}8YYMw$AVK=ZenOmq2> zmbv^`ySe;WGME1`?OeW`8_N@9Hn*jUMJ0e~=Zdw#+{Om;6pML}=n>?VD!T}RpI>7U zRQHa;wX>-1wg%_c!7D*wN&krPx~U6~OUX;J9`c818T4 zx?@P)=3Lz|THSBx{mo~b?r&~%Gp;di$F(_T_K_j2b)CJ$e0L^;zT#k(?(c7nc0G^c z`nG}f;(6A$s~GfeyjMe?E_KtVQrBm$as;Qmem}eC_6qCMgADpUQ~ABx*@N%7vj?u? zUzyv!zQXm@m(+Xph~52JZQfbyH1Et$rr&F?Oj_nt-w2Lzij8NiYuW$hVi4SiuFEw3 zgWQf^;Ku(zx_eYVr@KexYJYcx>$RZsT=xzp^Lt44dz@L}UECD)J~ADComIJyn}6P8 zT3N$bb_w|9lIh1X#P#`>0<(;-CB6QQb?I8J*E>yW*i~Rs!>_h#fPU|D;~PWW_Ip=> zV;sMc>ELD?kGa|8F@EJ%QYWtss{=6Y$seuG_4~np_&xe|>DKnm+Gy*#c5Sp6G`Nj@ z44U4?x<~JIv96owR?bH`?{x`GKB8z@*8#|A$Uf0#T?atpx=s?U>pFlL%`Yfg)^$OS zS6H;H>%v@>Pxte>?jH{8y1fqTx-X3Dx-a+Jy6&qsI)|?`4t_6i9?#Z$Uu$q5h8xy_ z-x}9}-|ydbU=y9oj~bVKSRRJ;;m;21!(WZ-!{7g?^&#Y~_L+QUid&!2hf89rEE)sm z$R;Ms61-{h)(*7p>5!>k)7XpXyF~WY#YOc8N}+DAL1bs* z9%~OhVfFdq+GAZc17v@qlP%#9wT!UZN*EGlpC*Y=VoGiZ^|bH8ef#$Lm8S5x12R%D zqqcRt83n+MCh5&dasbo>PkYG$WJbvRWXZ;iu)Z#KGtZdrR$r5x^;OCAWjOEFoI(55 z>Cl#T`^%EB-Gg@@?fSYv@9R`^U&r#+M%L8R$eJ2IO(*T1VOM7cse_+la~yN^0UJd& zYMeJsbk-BIsTr>KX%EPklP}Cm_tSlI=ksfSk$dKFzOYj!SsdJu^MyHLnsZ%Jx*Rxr z|J}QF*3W_awz|BF+{k;T>vfuQylEraT7M0I@zclTSh8r5b)9IIwPB;X15;8bbXk!H ztBFZ08Fu1U6J4NE1yowbDs|y1K^Ll6%+U6YIy>zftw@KDLIawR*skdcf;d)PRw%f6kIX^?(&wgHW0>mj7aof6ulorZagN z7J{Qh!$Q!oz!{^#f5Z!!aUxxPS{8gbKI-c|Ek1r~yZSV&-6n|o+Re1eJXkcWGAE04 zm1$kk;as7w=t!=3-D#C+SkFxr*?O)4d*gH5>S46A9Smc77{jzP!g{vaWuFdn+oxX6 zeHzI6WY`-Y>~!9{t5Yn2xe&yX>L&KF1m;{^EIEDuOFnM%-V0M|x?Irr-u%jyLY8}xO`P6`akaqq5I459 z-9ywPDBVNMb$B0!Dd$`xIOUv^_g~I&UMpmgZ{+>wS6qMo;y#7n)4f@s_d`(173y&g z6q9EmsIoOPvQAJ*Jyqf>G&<;`MuF-e&f>dJDTVBWuy5mPRH*ko}aHh$8T|F zenU+BPJ+g3t^A5b0y`h#=VHWo1H5zE#Jwfs-k`CrOgGkJ__6lj$C@?2(dqcz#q%54 zXxR>NCEFCpwiPeiMU9kg>vUs1k{|1?M$7ixbo`cD{Ib#fE>FkrIG*1Zjpo-e9lv8O ze%Yb1{Ekn@?*yJ-RipVO((yZ<=Qp6y{Q9Tkw}j_6v(fxY((zls^IO+we%^HaHuC&# z;`wDAYi7ENHJc#TwBuvVKRPrn)|{7atY`9LE$i6WvCeii*3B^14*Xchc5K{OPfa)0 zW&BuI^JC4L-?nu8&f@v)Y&5@|bo@5({O)QrzrpGFt>*cC+-QFBbo@@|`Tg8zTb<&{ zR@Z~AcH?ces8i!?wNJXSuH(mA+o`c*9pq}Pr@~mfTl}(-W1W+3tS9qhUDD{W&T=)@ zQ(&w;`LXV5Q*GoxGf%;N_e(zq8Zv zyMyN!?$TJjc6KG(Eg;)Lylm%nX`F03r5o$n{8*RqW6hdhzjXXAG++;^Q&w$zcbVEJD=y*vC;gxq~mu1&u>bj`SnW2ZyV3={6_PuPsi_K%RH#j z{7y*6Z!6F5$42vOl8)awJioTx8q05NI)3N!{6;sLUyF47uHgBtY&5^&>G<8w^V{5L zerwY4JA>!%R&rhmvEWabu@w<}eSKnxUz0>jA$@3f1XntGM@wv?`JHCnd0 zu4H=y$aWSl+aDV#+o|csdLuv9c=yK2c6vH~H}U+2HJaa9>G<7h@ykZ@i=^XsizQDr zn%_DrKXwM=W}e@UM)O;qj^BKq-{2mN^^HPTzHtQj#ys9PzVBi3jc$l{1o8H^3fERj z_?MZI7a(k1o`ip%Nh|njeDUf;wdmbFPd^g04I0E}o5lnMp*w2BSLZFPk;LSM2osJ+ zytM%_xgA|ce6@8_Ve%qqsimY`%w!goluLARwGE0=@=|CuP%9Qzr)I))JcYUOn6EJA zkH@6KSRft?R)jZB5Cl&wRR1gLx*Te{xvsxSI31wjwpQVk1_|sk_*eudh(k>i+v{(~ z&6IDh8)Rzce4y!IZKgaZ8rn(jfUCv0vGTsr=7Y|QZ(Dqe@K zVv+ib{Xou)yWc_v&;&LSNvGd1j}B!n)vqIlf>rhChsX+JIq_JoakTk{(bm5w=xtbg z6eT^%t3O*X_o&kxYj_@Db?a>RVh3;X7(dAeK_) z)#MmUCciI;7UU(bXHe);MPA!{L$SwbcvLKT1J}n#A1B?EE9rjd z1?lF;V{*f!TR@~6%Ou^Y&eF}7Wy7;2Sh^vQZa!c@x-v-jMqRpzUPkHaC9`x33SwDF z*VG9jUFd~!7)bYCk&|vySJFLM1nCyWV@(<+-8hkMB9nC6J4?4vZen;^3QIQ((k%oG zNVf?{_j+Brub8C!ioJB>1&OSrYw84%F7!e<9HcwL!%4S=<8VxIO&bk_wOj;;vG`yt zuq575ALJXw+r5LWjdtXsq1Gw{LpVGvOVF+a?VgR>y-DEOJ=IzErYNel3qce=!ySZn zgV63WEc@wlsBCjxPgB$QG)B_ebQ4Sm$1#+na3(23iKGN&jZ=CvLs%|1`2|i%<-q+sW~=S+`73Td-Dl*qTtXoTYGDr z(cbn7$li+Z%r&>sww7zOHD_b-5o7V!Kgb&kJpLYvZ?5ZM(l0(v+S;n$LL5}!JgM?` zG>%Xl#gwU`1W&#tEjb*WRz3sr1PMtG4m8?;UNYN&ufU(l2AZ>cqQ#6K(bT0^wmRIB zQHOsM?A9ZNu@IWvmTHTVNX-H{Qo=7Kirg(F;Eb^H0%C%iaGw5$2V1BAb?Y5WrTYe^ zc@~+~ zAkuH|Y-7OUj4|LnLmaQaoJ7&yCfzK7Myjpeo-pk{yh8)&YzU<07S3_i!X6q+9RkJW zLv8j6M(uOnC&)If)buf}JEDjuJeb9dNiVqx>A8kt-BpHo?iH3IUG~XVm*X<(@-5J1 zg5>1cRz=piQp1~6kq&CO+eQs_TmEu7cpB-TZ?-z9$f$$YjsA2!@uvY+e`;q{Lzz(x z$(!Kn6{?GQ;8X*wPUWtd*Batk1OIBCrR_bRi1gYoTfMf+sMnW_zBSLP)M4(m@nQxC zd)CguHvW}V0eYx1?8E0t_*a_o)_biOhi&)f+_pPjtEfnK{j=5G%8a`E(5SmVd#zHl z!X)oe)>TUPw95qCv|dVOd^ml=l}ml@c1R(SBQV`L})OEb#<6Qlf( z009g%3E*I8p}p02nwpmr@K~JkaR%o(ZkUbpZ1^iV4~b*keJpsxk$xX*zFuJWv07Q~ zWBG)ikUj@ytIz%!_388cC)fTSemV7m?W{Fno$RP&vJ=;yUsF&^*p}+ghZZc$|I5?* zB|K56cs(Ss+Uy>5OiO;Oi5%Q|{V<~;tsmAB3@|Pq`_6ow_Y-M(NMwxwYyXR6uZUNUUkVD0d*=_j_c3VQl`)Rku z=1!~aTJ~RTEo{4%{Wn_+x90FN;J-<~mBQ|{_Tzm&m*4ep-kmV@o^4K;wo;C^-||Sa zJ7F5LVRyp3m2#BLmdCm2_fcA#8ASdWfdGbi3x=tQxt1f?ml*uW_?W0cV zIBb5Oa9FnbJU*j7f6cs4=+3QvO0!RRv8xt-$*`MIGwQ!%pHLE3h6G`Fwz@nuqb>_! z{$3F!%B&QTGMjF$>t|90K6F-RRYi$O6)j-`3un&WMpg$$&dkU9#sEbpYa^BBnF~Dg zrc^;w<*2F6&=j0GGq<(bxh+Fec!MPgO~Hw?`a!s@FyEH!s;!&hsv5TyMs58FMqd%( z+d9L2TeY~Y2x@B=ZYyVVT_00h&4IAS+E$TC=xuQ`ImiL#hbnUU#dJ64#Wdfa_PC*3 zXHS}8=SjPN+kc)^e}cqK=!Qt#+^gEv@uN}+jvq<*KmqHH`{PGJ(xXtO<44<^XKj)k zF#OOdP7g7dwZZ%K0+1jAkRZ;|j~|U5Z9IOYm&`FESP;tU_>rj-XtE`OKuB&+PT%;zpuLKc-F){Xj32641{?FDKm{uB6)(A8m}rV|fje zZa$H&oJqQUouwO<^9(;RjiuWJq#FecNH-6pyFr)k#bb=p)k|jS<`>9WN!Qc~B3FTNVldnlx_)|&HR?w%ne|gx&?GDUm^wl91HDixk%Vie z!m&W}CR$C}O|<2poaUe$dMfb!vBr7W`}Vzdv57YSC-dI8woV$c|M$k%dj7z5(m-y( zkN{DyNq-{G^*X6M?K)|o+0+vJI_X4xopj#8MwRKMMy!(@hizOZ!QR6``(K}@c+&4Z zba1uAIoXqb@1f76|AM^-uW&G0dW_6g2Nz}3!BWsc30dBB_h@U?hAeMRpf?D5MOjWKP}e|HMZ8(ecV!kUpphbE7DvD?v3cHqkh_~`@a`666||FPlX!%U zdG)w6%@aBQFD=aWKHAY`hWlt|=>>Klt-s|ynx%~)O$}|#Y-(+zpUpF6m!Ub@sBCS0 za7J72>v2BA+1QL?f7r4s7hQ`Wy4JIE$@Lt*81Owj`qpp{4qpQJULO54TrUn^3iv+h zlU9TnR*s9qmhrTA2)df{RuP}KPPad7*(d#B%X)LG#nw9n>+J75oR7@MsQ=Va93k;WKN--!9^96Epf#&-UC zu)Fyyys}c6OT*1h+i;V`@y8=*xS0*%#ykzKbTtiLkRi~NPPYj(cm2htuV7z83^v+M z!oPN>nPr)zo}(9Jqrplw5*Ta|m~2n$8B0k}&^&ZpdYc_jZFV@d**;dAt)n>nj-iAR z*C`}=z<%}rLxLq-9-zLEn)4SVy!As+a>U}RDFytN!C=5MPEb9Gx~CT<4I zYJnWEJo0p~yF)neDqH1H+)|oHo{q3H&|lLSsP$n?+h3X*}Qt8tDbQ^fic$vr=FBVAoJGMe7@ z>jsUK@^3-%X&XG2Mk=f)EyhAirKqKU!tA+>Z)v3amd2C2UD_F}ru+oD)YSxfB008$ zrr_m#3vFGsFo~SjaSD?kA7T?GhwjIdBY)aGio*>#dz3L}cQwwzYm5opw47`rsrNLa zg>X%nCh!tS;oZzB9QZwf;>^Ts^Y@yJ`8!WM5JC=wkOLv)PrnI8?=>HstxxA<^y#kq z6->#e8+8tbA zZ0+s5jP@pb(mzYaWUJ3@8THvI zLkz#dRSfT#L6fuWH2GJH;XdIDq{pe69=pGUu78iM^m_$g-Li^M>NZrZmD-}EusEK) z9bb1x*9mex7+n{U>j~((m|V|7*CpioSae-Vt}jB@W#sxvblsF(zl*NR@%8Vq)xeu{ zK`QVh?*Q5L2@DRwh70=hp+5=z1<_v^{pFy)DEiAse+B5Trhu&lN~_DNn^u>D@eShF z1d`xGyJrn_1HcpaiR0QCVqZ;vHqCE2oHHo zVyLMt{8&k6Yg^519xJ(&J}goH8-C^@w-L{k?4Zv})ZdKTit@o%b`HM$Ag{n}MYV@G z@*43F$5ptYJZIluYL}*C`!P+|4+wBuj(GuY%hBCK93LNeh(k#K5XWh7jQxJU-9sGx ztck*Kj2(V+OIc6X*~|TQXAsNNwgA8Gq->xI>+XJSVQp@qCT$DwdritFx~l$xe~`r8 zqYe-KSr3w=dDH=(;jnwu!TcaemXA6#wi~j3)L{$VW|+)Bin897 zek%X0M^Vx|>HtrH*gfiCeiS9kM;#jSD2nZ)4(EV=;LR-7t(S#q^#i{@rfj88T;55Z zxHPwLc-j`=7pau<>4TQX@`o4)if$fe>GNkj%+k|Y!|)u*c(aC^S|4UPN7wMoSw;=( zC9{Sb@-WMIPQ%a(Wg9%q0yndMnPr>>|6eq^VYU>5wyd^bVtzON6nNy#v^Fk<{6c^ZC*o_XgLF@ zttk)5R*z#d>ha?YYszJ=^!QPRHRaGF{tMQW+It{pWUGS{GV0(BPsaB^9_4CF4^Q&n zqPnno59G=2n|UXLYfi9H>0k3bkdm+wO+;p9d%u2Rn)~(j4)^OXw%)IQ*m!`GKJa5+ z;jM7DPX|9Ct2~+J#ALB6Uw%5niODPN6hCx7DjvTe!n8)*$lZ+l3!pV z2Q9w3z^FyNl(iPQ-z3o9GjwRSI_#2Bhc9|EzGrBGtC05sm4eMgcD$<=c4x?zofrOh zyl2RZpKYI=tuA|I)a7eNUGB8iWyqB#UQRRpY36?V^J)f#uC-I>u)ml>A-;M<0ehsLzK5!@cgy1-o5HcSjB$pl|S+ZQX^;ch$l}Li&5tFZ|)YnQ@&drH$0vAyVIG ze691|g+@!*yKq0RGv{P$534iU!($oVvv`3kRX&>GJ&P9}^UKFsDB z^7&{@b9lCTtk0;&*AFaLgagZ!1Irc5a)rM4XKuDWSCi4_9{MBS`!j-jq@e-?{otSS z-k%X>L#yB)AG!1oeD9Cru#L}DHbHZvdD-f-O-6m*ZafG0QzOm+-bv2^-bN-^!%dAG z3lv?gjkK^HSGZd{41F*4l6lt0cIUaDJl~(;G~hKhX}ZS`f3?$q+TLLavXLXQwUK@q zZRBd*=e0!<8q<8)pWt)tCRc|)u!^sP$JP94mNehlO`gthA4!ICE>#IGbxrz6A`y)R zGDVW5X(P!{b0n$cBgqaul7x;nnt@(2n}Jjia34t=hi!f*+!8b&o1d+nEX`;qyNvTO z`syijED5=aB{$InA2&97Qg=(5mxN4n*Ush8&TSc{c9$M)6GqZKUzzpPZaY7;BLx$S0c4Cl7n=>=I*2kQmnx$WV0??>1j z7K8=a`gDtoKK%(kYZ)`0wajhUSxb*dk0EMjEu)P%Yv~oqF+_6KGOsabE&U=nib&2{ z<~QQ3WdOI8ub;J)8*$b$gxiv}vz7&oIBOZf4Hf(+&ss)gPJp&%fze%N9QEkxp|9ebTmYEwu0reU$S9uibe<7w0{{qvr`PY1nzs`3KH> z3hB>#{s1=8UnD!6CTg02Jw{p6uPX7L++K*QX|!nAGRL!-awPiNds zpUyD1ad_G`@UhX~^rtcooEtS;%6>aHx{uD6FI;4tFYBeO=gTkuVBO0+GTXWBks0T< zG4T)F%bdn7#hZbo3dH@hm$^0V4#YIGr8MJrAg$j#qpiCi@84a1&q zwaJ6cz0+*6Id79Y!6vzmYE@g9U%QmJxc)0XkeB^Atm7A3b4W6a9P%g3NJpffkxn;{ zucdWHdbOTIK3HnZAs^VshK9^Yr*k<3dZD0&g_c8B9&ZdudMWG0(wN_9NNTWSnC^r7 zki8$3ZOj^xF=kbXhWju7XvF=OW+J)&Vt>HJ-A~lD5S41;mNm<40$uPg zcUDOf&PEG}qtn~NQfd#2s6F(y+QWELezQ5J4cWSyRw{F-bdB{ecNv!riw|VO{gw?o z^Lz0gJ}>-v*>DU0own*$@mdmwBmZ2KZM-ha z7_VC&@Tvn|^}p#=jd)LQ=HH(>@SffS@9F&?eowEq$EEClzl#2mdt8&ap|ygc;){7wIAr;BZ#17hzJclh0@S(fL3wBMaNCR_iRn$dsyiu>tzr|PNyd?Pf%e{f3d zLH(!EzdO~7?x@;4mgFu%_Yu>dU7fkY#z_B)zdHrb3#!@L*Yu3`H9*`S@2l=F{tvvb zS`t?K1tFEK4%TJV!3@wrxvm4tY$xVQ2ZxAcw&S3KJ8V2*|LLH-66YK-aqLeW|~8Ga0b%uke&G;W|oKS8gdZR z_K@9pB;opc(e4nWivw;G=~U-?vTVuv8091~#i_rI-$q^U>ZbLIKkKG-nj>;>zu4}G zocX48mPh0oa?{%Oh};wrKLc9EKLd)79yvY(ijT)l6Sc(~-lBMJg)tI8w<3#3Z0hx; zznGshfOnlN$u<^8GRESOV#ar!xJ!w{X-c$t*GZnM77n5}tQ`XSxV8T+?>Yfp9-FN$ z&&sIFq5DghgVN~I-McY{WYFaw|89)`&{}F;6T@1nx`}lyb%LUw&)n!UMM?|uInc@U=I~PpLhk$ z83hg7Lw#HP|M8&m9J78}TX)#*{o@~0p2O(}dI7#9S@$nzWU+twCp_YNma}x>>Dt50 z(oI?)@x7H<|4An6Kgm|Q4SB@(FiyJA3y=ZqUzRjr|MFTot$=j1^CV-s*=gTv7wIOr zKlU#(pP@RifB7F+TQ_L_pIMg&=Klxg{|Dy(f5!Y@susK`CU=wt{Eu4Go#;c|8xF>z`ZSNCa(LA4CKQ#+qpmNfs3?yb)0U$0c+@L;=ks~g86^}Y^Qc+6cnf$`Pn}nc zM_sEAxsXRy7E)9b9@SEpVVp;;)omleqox;8R1uH5t%{o)&!wme9;H@LR3(p^sjIRXkNQYgWpf^NlrH%eJn9QwP%U{> zJH5eHJnBom!73j0y*{qiJgRLSMI|jxR6tQ}cvS0BimK*OLX4tnEViLj)$*w2y1wdo z)K=X9+VZF>eO&E$)GpmN+ViM$6BN~fM-9{Mu%pG;bZK1GXC5_Pmqr&JwNQ^6 zT`eZ63#yyNQ}hPwc~q}rit5gz?$CSKgGYVailTb*sLeXBUOcK=7jJLNkoCCHhey4s zkE<__+OGGop9Q5Wr9Y2)Tvz1)9`&I0IIJFR#_*^x;q@gqc-Z$8-ZJnA{U^RswVH=Wm^JnCezU{8^J;k6NZ{c`lE7JxNjXc+@IAR35>jy6f&RpGR%bjcoysD%Vwc zqy?o1y@i$ur!I}7c+?wu_&VA$Th_a=h(}$a+o8gvrsz(z*peM|s$+OmLPx0v+^HdIUJtVo|#5oyMaM)unMdkNQlHHtTuR(|S%hgGYU(N6`%y|I&GF z{K9tWaT zMxs_6(f2%kbyQp36D{rzh2ri`k>VCygF6(8TXB~_ad(Onpage!iWIj%u|hw*0gAiy zrN8&q%O87P*)wV2Wgi9^?fvMj-cD7apLJA`bQ*+y~zvk6XVCoNQqg`>6~~ zW~4ZiY28wW7BPygfsSw(f#}Icr08H=MQ}3J0wo@RG6_)l9;`(jD@-0I<^^aJu~PE> zng+pEf-Zs_TGAk#O3*pb5f>v+#6k-XV44WHp;{n92e%{veu{$Y@BoKz;{rbc=0ph! zota=0rd`Mj28=*ni@j#ag#bnH7S%#2oI@G+cy91V#v7Cd;iYAyift#4d-MSKi4vGQ zFu~?}qLCMT85iK|pbwgS0c7NHXqR?-GTu#T4g^ZA@Zb?KE?8Lv;sJ6f;-WtRdZ=P~ z-Vx#M$Nu?5xBh{NVk}`3bmYmn@M&w3I<}sVDCt+MRq@Z{BUQ!)St=l04?MtWR6tX7 zFg(Cz_YQk9txL*+d5r5PGTupP4mib9a5EvIr2W|bPjub0%7V#S#Zk9_o8kz5NYN1~;{r)C zWF2&5z__57>`;!p;Hn6Aq*`D?2X7<+mPEk;cmTh*ad`jj79lSbDuT&_F}&!yr<4UV z7}rl_ygSkyNY5zn0C#Z8eyml_M)HvbxW>!hZHLN-h$wxhiLp%Kh5?73cU}l6E|0t zdxQLpl9v3;b_zoJI*oZXZ_A~-_EuoGML)86^<-dQFk`nKYhh`QmST=m25w*%o_V!a z)1?JlaWjzDGKpt7E&uxR;z%c{uqvmgMD0e@U<-S{Mfi9heW9ZJmaFd>sawy`bz#b{ zOwH$cEieGHTW{a%+Ec{4>d%M$qb^ABZdc%g1{?22bxwm!4y^O)`m*Xs=QOb2!s0W} zavt{eCI695-PYHf6uBIy8tj`(!Xq8-jryF*QZ=DZX%>Ir3UZ7dIN2p&8x@F z!8skJYHfEFfdPo!dZSa_gr0^<~GA z&d<(-wQZip;^Uj>&sh3`_cZAK=6`wF!nw4!{f{(t zjyv!{la1E5#$pR@^Sh(zVjJy#${d_~}ENZ@fvTp-iCBZ4!(R2Or*BpiH^ha zqQoK;XA+xsaf(a|`l>*y0@vaITndGLC-?yi+d5O7POF7=( zSf~)Y!tCoMH?K~SuF8>C%5mDLH2%9#0Sk-HYzsFeBdB=usq{_TVU4kR@47IHufL)@ z@%TujG5Pq2P;H{k&i+4Ot*sp$v7g~@qUPMqeGkg=P&b>Le9vMr0S779l9)?-ILrFN z>mb)31>z=54V!|XWIJ(4$lQ}IJu4xW#O^4r6NB22Vo!J zApSB#MaL># zslmC$aBjg6Tw&4RKdmGGw9dlewGe*dy5A)^?&m*GzyDdO{DZoGQ1j1z?~Rvw!9T9W zFdX`4;2<2dOhr8YPl)|L==dk@uN_>lm*u>?BO)S ze^x*K3I1yh-_7s)kR12FC=>q^G4&6AI2vR7!>^fSv$HJB@4-q-3{rwQ7t^uhA4z3U z3{I9@K@AL|-)28TYjTFrbT;17SerQUev8DdXy=nSqPs!ijGU`bY!SHkujb^GpH>T* zTSqR|NV4*e1yvQ3(^%_NfBtW1Tt|uGzU*ywe2c(HiJlN=q*nO~d~-hY`{XaLD%)Bd zevaj|ELqm7V%%M0^j+JR$lP3~*>i#`9am%WV7|7vEPAv`EF0yNop=`+FFeQ2|qlPXUHVs+HpXNsr94oL1B1F*f}}v{CXqL zo=IY+>3{-Li?{Ycad?T(c@}@Pt1f97Tr{zEn?z{Fudw2@VSu^wedOMGdxwp3EKoOIdwe|rxJf-KHoOyn^ zn#aoAoAhBOi^w9`_^RS_j_XPR`+xhzLhh>mYj!h*L>BeNSCyYT5Nk#ChNtMAX|m3n zm-Ez^dwZJ?bTQpIjl8Nqccjz?=nqdRI=f|^-zxjiZ~h1-K&)nsn~0h3I5PL(u3ZS` ztdCTnI5927U@Jg)GO!3+JR@VWbae*a46t))vf(qvD@#;k!fbK>B$Kdi&r^`Wak`uzj-Y}etEivUsk6F@i+(ajb!OPwt%Xqp? z-)tT=)=zYz96-GxFTt`59meld3m3>W18hWM3kFeI)2c#$8rW{*U>j$iEzOpYhsQ z-@M2u1h>#U7z(0h`Uge#h0QHJFa)4J2AAH%7|#@2(yyzEk$~HQz9+c@n-%R zYYT+~nwV5JX_~5`tb&qJT}>R=Ma)C?dw;gmtTw0TmuH;CpZF;V2Fq7GIpN&Lw>Q@0 z@s1lP!FDzeb#%!G$`Tz;_~BdwNl0#tTA$UC&lF-e*mrz&uJEurBWnU!6*g6zw*G&~ z6~s+>#Jjf}M4y76QB?eejxdoGZu|xDXh~n=pJXem-V@!$2VKmP2eYt(@L0bo;d~IZ za^lU*FKO-w3WJsy{*J2e@muC?>iUrr_)F=1+Gvb!1p+`S?U9Ntp)setKm3>|m^v-< zLYtW+CF+s%(Vosn-$#a*1+OJ;kUhZ3k7XrPBFC5<8hvBr;EARV4Gz znPCi4^c7U*yW9MWaz^Hf;j;^}ZIMF4Cet`hQ4}gRWLKz}){rpt^jt-bCplH-$E{C% zMyEM^d0`;zm^AEfPf)ph((6+kch4a?T`c-e4oeTstvhc2-|@Mt{w&W3PJrZ*(fyJ* z=m7oRL>lx*N&Zu#+%K=YNWqS;{fM~Dlan34tWCK0#jT|VySf<>LwSE4rd7A`F=R3X zIYfK6Dt5#m(LW%+-%WW>0%-_OD~@#HC0>SgM2-HE|Ia{lLQJ_AWBb@Odb@nrE8|q= z1S1Uf8|wzRVPve1PdU?Z_f3o$(^F>grxZVFxfmu@*xbA(uAb&=BAubN8M@w9hHk~< zRw*v2fBL}NKrv;dSkOmSK0PQj?kx3dx;aAg6A(FH<1Ba0%1mVVz`CzZk}duv{ydd5 zH5s*FdBco;uOK--;=FX8WoPIISeyRY>|{tBy@Ji4l)SHzbi5i#_5qhQE^9#Eg%rC6 z*`#3?rW>20RToU=V@u0M(vpb z|MHIH90yTC4RMZW(2L}p3Q zDO8z|Ha(9PIH-hj&W{?bj!>*U$cl2#jvDOr=hI>g307=5El)Kd6Ug+!QDTYupVQY| zoKp9OIocbA7a%)@HeQrevhYyW8p5&chsh7`!_vV5<9cFdlnfe}Y^<^Vvq=ZPFDLsT zHBl27)kdaO?Et&3Csde#Dqh4_Ps!9iLwQNFuI`WfhwJACyJspBqXY~;=yejc!F=&L zBgp=RiT)(f7c?dS^@AX*SxUW+*L^6$>%&3ALnb7yrjY}(;fpR(THiUzhVv{@qqZz$ z-=nsbStRPSLmiHMb?xmHWj`H_4Jr<#Hy2 zgX=QQ(6X%M7zFI4IipUxRIbR_G&4ME>}pE}J^lmIgsBUE?J9+HYEKFJr+NFd6Q$x# zT2H<;5;2oxsd+(?gATS2FVfHz`3iHi#ZnM<7cOzC{I+OpSVohQ*i_Xy+rgAi3^f zn#&9tsn0Hp5q^74qtHagd{e4t&O|nWnOU6!{^&+(tm(R zFfCHm3(!<4U#rcduGnw0V(O)HtVu19%pvymG(za+GvgK2Yx|0oe)D zz|r46>gdJ)3S`5n$C69x^c3T2OIJhWWUrGwXGBccq^vXN7fzKRY(%WUwHiO@FEZDKrwawFk1?~SiO_?6 z9gf+(zGkK-myu#QU7|e`bhTZE>spau%c*c%D1 zYJWfJXt97-yLS90*hipwv8CkaEk-Ma%-bTsEs!_^%LdU{M-0if^+0*=uJ9L;MqJkH zygC^bybq&b1|ElbDOKuAmGL|$$xG_E2FMMtm+BeoE34cygl^%lx%3OsmZe`CR{9NS z%k|xLw}?tK{+YMhmQs*jzZ-eI;Tqu)la5hP`V=#2OMCE2x*%nXG&}ij4`XC3u=I@T zyHbWU*q0!ChruG|Bz0acn4_PK=t2Osfy7t&I|GXipT)R=yf`NzbDq+qN9zi@Mj~+! zZIX-;Eg`TAjk*2LwpD(VngW`x;*=*np|H$(Pet3lu2HhfQf6)qJI0!`E+m~eWq(EQ zyQt?MVIw2v97oP~v^wad+C1@o%BP;QUs0*I0iqyGfO&j0+mpc~B(NhqFbEWg`1wDT zy#pZ?+TdSwG}<{~06*_v+}|%!59mDw>Cxva?OICrJbsbW&wOP#Cw0>1H&Th}MRj5pFBLI7{MBpua$Szl2`8THJ zL#$zc0qK8FNBcY$e>6rn@^VdWA9gC# zm$&@$yQUiniO=5iWW)TM*z*eduqG*3>)+Up;;vwA-{t<^v=hZlEl$C2S`%{nrl~IR z&5lfFQamlePd2~AL6foRRQ+3_;jMRU7ep7+uD(Sw=r&G)XC2aSpe zRZP2H#5P5>vK%#!q+3BBeF;5Tc0&GZ^|icL@8j(?%|;f9wET(6rRGkac0N6=Uh8S{ zVeaJDjuU_vrIixJyQ1pt?7I#%tu}w;9h@~7vz0etp?=1v;>LH`TWnU0j=F)^-r7)G z0z7w&b_6xOHP`tOy|H}DhYjV{&ZO8N^a4_0mFZnOf8H4<9!)^qq@6MM2#)YjT}4G{ z`%r6pRVQ~Fi8zH%K(GJWW^Ma|`bPZHy8URcJhZR#?fBMtNONwa*V(*c8=k~ZQsqXx zPX82wADXulix`42BDDn5I+iGdxGhd8QFg|4@B1ZYR3pxOs7B$v8%JZA*>T5hNCxb) zH3&~b!YVgWW|BLxmnwy5${%TZaA``O#y1De%vkh+8$^Cq#w6|@9na78c2)gJ!Dnu3 z&qNJu>N#r@@AXHMRSK07+uUZV<0KRP{fKZR-ki;>73Uq@Js;%M7(w*Kesb0k@put; zMl3%j3i2}Boqex{+)V7;ximWN+@t;E3=8H2VOzwbe_^-QOIoimLs4S06u$D*Bfe>t z<~D>bu8l&A4qM-_ZgJHVc8>9W6X2}BOjz@q>OdMdGQOV34nPrT={PS`M7LX!581Xt zoco09D4k<|QFA$G0X`MmBpX=L@mxcS%X4~K=FI~?=z)xb{%a>FmRERL8ofy2wKN+> zp1g?oNJ#8Q0a`mOO})#1KUI{;>wfJDA&u+7S77;%xPiW=@6o}$)La%l4J)&G>5ne% z{#M##qshEv$k@wb5WJZ5fE$wQH%aqZ7#j_FVnvM3R?F>N(0W#&6k3XjUf@qQ#Zw`+ z+J1fbQU`dHroN9i)ZXVrFR}n$I!a#2cOHwQ#AO{npXZh=r7n@v?(f&~>|A$i%x905xpYh5R z>RHe6yfcbh<>LS2<P&*1$ZdHMC__`v?TahCgYZfQr&Ghbno}fqYW3zuoaWe^HJ`r1-^7;fH#}Xy5U! zozi4)fO6x^m3~u4Wc_69_Ga%>QpV9l%rBea_p(7X>)=**5E2%t!VLoS&Mm6jcH*fu z;^ph>owX%?5fIU`gZrQ=o>CimMeR^OfE~JAca`{`B@Q@~utq!%8hjr;9Ev`#Nv?o+JiH$Zz%9cQTTI|IbDC`Vr_&@YCL*t@IE^PO`9p(&_1~1>sCN@-mYnejO*g7eQGr<4QY0`Yk8E zxokumam`bWRhfmjYiQ3SlRZX#2ebONCr9@9ex5h46N?*oQxh69=gt{<8A9*HnT0C3 zmRW?l{G5DU?-C0#Yfr9QE!uvHm)jkd+uACkKRqNgtpD+dT=GJso8K^ zB-m*fXrkHz{czfhR&J+whlQ<%r-F%z8;gOZd4rztxiT>JkeEw!^plw&fvw1PYOE;)vW@b|JPd*3Q1#i;p*~(Q1 zP1^jH$wuSW-=Pn^!{_K4OtzJ_uU`~6rNjd;NUk`!&+eRUe#5j)ZX0k?!?fXR5kG_= zAqB?Vv!XNq1)iy0y)Fj4wmrB@cDcUuM1TGArc=Swq}%dgIBZvJ(^ostEO5QpC~7yu zE8}HS^{H>Tat5F6(a&3w%ncz#;gQ#!JG3Kyz^A>{{W9mEbL;l*R)o0vFPS^tzGRrY zU(4Ue*Q@2Nfwrf{isyG~DqYrLy9|q>oL3E&kpmxIO~*SloQkiZBnu~&-B^~kfA8+L zUqoJmZgz6B1n6$?$$a=7Lya%DCEZ^u-2Bw1P6~yXScPfx9?Hh+NFCYNj75z@thSEL zK1DZQE&c+Thh*PA{iJa2`CFyhT8eSsB2P#%U!$e%uk7G?RxL10RJv)5O8@3Rvw*^I8JVBpkdHo8` z8*w9lZJ`hUnP6wH`ef(XvY7#DRxJbC&)qS_5<25N_v?0m; zjydF$JKJf|2Jf<@c%A!z*+Lz(lrO!j>hD*)(RK|YGQb)o9z?^>kGt+z#1i$0bEJcX zPhK~u5_fjq=PXO;bw}j|e-_@<{+4oX`B8PWrq&_F7n3_3*5;gct@P&gk^k<8&vGpF zdp;@dp6Hk$9Z$D`dqJc7l6gM!Uw5Pt(vN4nch%-jXg)QJW^Psco}p_%ZX|Qf87}(< z%H3D#`KM-)6l3GA{gj;_X_hoI4QdWCH#MuY>fwfxk-vNLbBi_&)g^jKJv5?%-k;Pg zZQM*nGqTHH$b3l`<`aFvr+glb%;;}2GD`E3r!T%Y~r=ZgTe#n)WtxQr(Yc$CVlfjny%9;;>;p7c%q z@fo;SvG@`DrzCWF$Wn^&Rd(CL=kH75?8^$Hc~?tnp@lDTgm+SR|Ng9;@%Aej6^bvt z(3Si9&z3W3+tQ!6gYTC_7_o*z9gNHj#$;BTY;#O?|JG2ioZ2oYHfx07-=J#Yr@bU3 z+4Y1vivD4rj}EeQ>E`9K@5;=`SP^;G*720ux*6K}A6LzsB>J(}+~-HAq-VXukGZ~0 zlgFU48+6{fNovR6#0uZ8Yb_RNUSB~&uR8<3K0T9`rVoTc!b`eaQ9r6oBkCLqiuIHpY}$RQ{opm|GhNK2WX ziouQk87*c6b^Kvm0R`??_%q8l`5k#=}D-cpfJ5E0NE(NfSJ(h`!8P*Kq$y(D6Ai0oT<{CpOf{`NUD zaW8C%L_OA-@JU+yDfGhfQ^0fCLWsgvL(8vzNXU^ot?G~E5Dsd6!@qGpdgebX*ML4@ z4k=W}}naW8;01 z-b?41DH_xifMxTNm}rbRfH=gsW52`HMr9A%P9Tt$FF*(@ar8wLU}U#b+#cOF%5GBd z5))$#vhv%QE$CYF3Sz9W4cnOgE+T5G;XOg zJXw~)|1v?vKU?ZmaQN039qQu+;H0&FR8tR=R%*2dGC;}O4C3CyK0$?*@W1A>q zy76v|;@)80SkW(NGLskbXpN&_i{0IzN}&#k=kJ;-&#~{)P+2$`$JXkyA8e&jGLGWYu_#|;@|6#1qe4V2&}2} zvr!%DYxTvUV!|`6sL^ctZ`2h2`bJCL)TsXXZ%_X5dhja-Y?8___KW2QR0}drr-n~< z#+)!Qy$`zvv7*9ZQC9^VC&cQ-5$XD?8E>q&6zfQQ+D+K)+*edR{*cx_TW51VeX>nK ztv?Zjp!alm9x!>?ncW0eq;=JIyB-cvG~|g+MAj*U;5mI1t{Hv6GUI;SBwnm{xrJfY zm>b9JVAgyuBS)4FBNJvnN}IgEU`~mwvfDYc1D6i&J&_=O6=^W$dLjveWrQz7)KE^z zl`{W1^AVzsL@=gKXUW%d=I^-daLZ*`7@U$vfAg7F_P6qvbLLQMSBX^esVH7_x2bH; zChNmy_D`SNT_oXkrI}=3pLQBVn=xGwUkSF|LNhsCD2Qyfk=L3!*5sJVm>g2*Afv`a z%qfT-ex?TI)r{;XO6?@<#40=aY0->d&Z(8l(xx9+l@n6A?xo5#l-r-*E*db2hZ6l} zWI_+c`>o5Q6bia(N%Bg+)N)kJxn#nRs7`btrT+a@GA$l%>pM^Wyaq^1T*vZqOFUq}^hg`rcxb zpfsty#okGN8_Vmh9c;E$!xy)6D|^$ z{}(Yr$PWHUpC+P1NLzKQPRN|_@HWwBd=&*OSpEf!;(d9v@?C&UdAl;cKX&;aW$E)jtHUxbAQjPcqa3X8f?SY;u(m=;e6)3mhK!p_ zR_oN@hpa~o2UJVuQ&}<1YxYHRu)H#Ftdvr~zIVp~Z&WE`>0^TZ5Y|$UQ zp^P2ZFBh0_M87BtK1-z`l$322(*3Pe4g*LtMiG;Lly!|&PhE`VN{x?oNhKu`r8}kb zlR`HZA;1Uao>&-tAyakAbvPT|#I#(6 zqH-u;2HH>1CO66ClpvT7VO%5y^C+Xo213R)Gb64GAiU|76{^Uo-9)zZwuJk1NemR= zcFk+CMOCoe&1#%t^|+=W>2JIR6ehQdMH2XoM{;GKxC6RAMM2u%KHyR1tJrMDQznxn z?`#LjMO|=5>U5p{diO!TmX&fH?DdQv6Z>$BCax#E@ z8prDVP0XH_w?ZFMY&~NI@lQn#rbkt3OmK{{J7GwSckEFd*GkT@%(9ij1CX@mi@k7s z9jhrPISDqKF}!zWjNd!s8}5V5nuy{9YdI!B{OlhV2?$#wl+L@U0{nMzhx zMWd1!-pDH61hI_>U%UL}uvl2Q*qe6UOW=7iVWaa0=W(f=;WVl=O(aZ9TX9s?BKk{3 zG2Ue*EI>EiC?hk1KA%~39=#7*wM!=lGd;7-1aHM{BO$1dA(gs^`(`BcU?Z;YToUX7 zs5&xrU@clijk9oXC+_QKwWSXU_qLo=ctn9<>f*c`-Id(v1V|imMjOW?j=giJqhnk! zJVyCKalnD+QYEkO)o|5POb_{m>V^x(3^j$|Yg?A&iDT6z!V*mI+up!uI7z{nptg_= zZE5+wh)3?~s*L$+$Pgq+yC*#RcBVe!dliV{^E!eMW}6afUAclnnl5G=ixYwqj?+@S z$%J$66*p`Sa!@bF+393^U^9ybJ%t1TwT>oR8<;#Vwe3sXn*KK^g&)XS>h&qAUgUfLac%ae)TWTIZcA7y`JBw_Vg6V=i7 zSUyxRE~pUXtc*rRG9hpv@1Spo-jk-R875Z;tN}lQ$H46X4F&2%F+3kqSUk+6(5{GK z9CMjW2&Ii50xG--Eu>uaali1BIP)jF!c$1;Rk~PFm{x+2JE21JAcPQZ?VvI|L|iNP z$6(B$Vn?abb9EtF&y&^AV$;;Ct~tqh>|FPQC!uoZ2PvXCq<*kEk`wFp8FN`vDEC5O znMr>%or9+uY2{)`HwxsiftK@QrY9!uLH<~Vtg zzu6&E+S>|};en_(rg|-6a*{w|U=J8iu`sb4>&6_449U^fc>cVC!Yw)WHPlZ-oWw^# zLx~$u7~f6e^A0u+i2=HoN-4F~a<&Ro^EwGSnL_(ZDqP>J)O}bfbs&YAKno$`|0wcp zH)OCl3eY-^(3@7*h4*3n)-5mCGKOWL5rK$Vs2Fu|>jXl$K4LIaNO7r!d>aM{Me;gP z8?6(e6DEuW+5$-dx<-5sEL%}JjmS$8L%#`u>cXER?uaNfu&*q2eD~WM1ek{2F+nLI zq@k3wq#kL1S_-;W&{AERCF2~^9Vv`;gLL}VgtFD}h>a~Hd0oUsbPorY`1i#JXS%-k zE{sQt)5e6a`o<5`|H;(=Fp?7P$uCU--$@I6lK7CR2|gg3y#4PZJ$O``g-yqS#7S|F zZJInvbp0fcjD3u(zr_ z;fw-xoTwU5daNJ;w=Hde(%tQ6=@DYJnHGc{w(AePTJrY@)gT&q&^Jv?(B8OdTyZ*= zX+RH*I$-uUa+XYNi^oGaa}&)ZuLT`U9j_Vb=_~3Xy{t`9w|<0HplhiY2IYe~K*u2F zK=e{Pcki;3lZ}|rIG?R{(!D^Nr}yvO%S6aeKG+3T+Qlsg#PLtJ;&x_5sIr7Z#g+ za7nCzyleP6NgJ7yFzhXq2nzr0Q@SPpg1H=;s*SHF4Hbs;0lk3Z;8~@gpS!VdFkn7V zGD!WJ95OH;>?=p9AytruvScOmq(?%S3e*|?rY1#Rn8@EKCds;j#0cP-)Ek-vp)H}2 z4~cb3XN4yZ5hn?F@&G|b;rZ7P92)+}4s(RM10M)VXCbeUCWxfAmo{rjz2XbT4G|0< zVjv$CSUOhPu5cPDhS7%LBLz=2DZrGnEx-%j4Qllo&%tAKgvs17+gxg6UstrAW6awD?W5A?knzDrn zk2J7D2${BfSsu>#muOfNJT;NDaXZmMMc_RVd6beUfkUXXWH1bE^xIvGrU+4zUpR=4X5j_yo2zkx|XDIssR3D$9ZNMJP3DTs90Vk@f3`sQ8 zq3b~PfdnU^TZBC*HRoc?*jD)UY17@LnaA#VV#zH9>lnRrfv-I|e|@ua3|K_wbk%P+ z5Y(M=hApZ9uh8X94X^!QR3UL4JG}6Ix$&zk`#fa z5s!EsdqTO1M~MH-V($JtS)IYmkRAAPF1ZJ&^=)t;pKUOpc+Xc;;e(XO<>A_3#3+t% zC(h{HAL>ziZ>yE4QPVgylr%KkMb*cqT5zFwN^Idp72t0JJP3G_w+WWkz;q8F#ZV1lamg`4FO z<9kw{hBqk$YeW7TS6knAR?T^+aHhIy%%bK9vo(*65<;<|DTwzylA6H;L9fu9VI4~^ zQj$pw1Lbht)OjeO?$*Gjh%eK^MI4A+l6OJ?RHAeDjbo$!9wW&_fx0*K5nh1Z#HB5T zq6ewT#6^6;t7QFzAkCav%OJ*_;S%Z620zX^92RdW05qtS-Z-rpQ|AmqDrCY!!m<*H z6GKLAW(7pa$WGU0tJZ)bjG4h@GW62}*(-8v;wnuzB3dQ+fF;oIDlxcD=D+FMc2(AJ z1|w$hxJ=sgK)Zpxq;I-)OSM1JPo_r#ws=YUZX}YKY1n*kJ#4}nPNR^y`4UE5H;Z<{ zG>Ru*i`b)b{gy3TlD_)ap9u7i=Czo;!7+6|W!)I(gvVnEMk` z_3^(Oa`BO^IPHn0V+QdlrysiPW5;+sBV!6x(3xZYp4n_bjo|dLy)S&QyJ3;*T++^v z64JUhl`L%!#MKx3vyZm1>FdD}vcEs`X6wBL^Hd&aGZ9})y9zB;XuCkU?nmMQUavi4 zRyTsE*Txu!?GN?6HvxgfPJIUo23gw<)r(*Awl*`0ofYfk3#B%jqf{;BxkI1j8Pv`k zXa<)|7n_1CKMp-Ba%NHZ2VE(L^2C|kxqY*_uM+0i_wTt-d=53uvI}IrI_UKX%4!d^ zKNsF?W}G3|w%4%_?aWXel`(%v;Nh6LdohO1CYh^EI2=v5#u+@Uzt!>QTf}K!`!O+} zpCX?(CUsf&QF(uxAOv%&`?G_IL*fHpXr99d2Z?!Ga9ioj^wk45ShCbLoQB98>(u2{EKJT@T96zg z8>^gFerYV3Y=BJ$f$M?~xFS5v)#LAa(4U^OF8`!Z(+J`w*e5 z=l3oN0rY2pYj{OInZDS1nL>qL=>>U6OY9-R3)O8?06%<0i9eWjo{gdS{2RP6P#mE2 zKh|(N!qKS1FDZN2aqCfs$aM_sw6F8QB-;RQ{%8LApl%!58R-@3Cx_7RBU6YMj>V8Q9Kxcp=Qs#zJ zdQvIY4`~4hx(@^mh;VBt4{EE7mMwD%W(E+;ka&b$eWHW$BJLflpj^9%SI| z8$84=;^i8@VQb+#miPugQZ^aGDJmM-rlOn6>BDm)aAM$tjD`=hnt#5aD{1EWtm8Tt z+kfnE%$-6ncWklZnPbi~I0KDJNEJ8$`_4d$m5%Q|N)=~*ok@KNZm+*V4F-yuR2<(R z^{f0iMtzn9r_i;hhN*j#SYtmRnsX=I^T+qq+Pihd7Be=-H6wR_3l`+oi_MV@f(NL(+YRZNI*Hi;E_{mO%VQL2 z{sRKo_eKe6pQvK_?Bk6vt)^g8D7=b3z+Kh_yBN@lZEbq*0^Ys3n(nw%0EisJpM91< zw0^&P(~3T~dEBEAa0~9`^!9#Fteenxbg}m`;x-%i9zPe{b`O1&dXmDbI3H*Rl$zX{ zOl!Axw~1^=-OwM?An$!UmY+6L>laT}k!7+0$2KX(u7}BhAnQ4#E<*FzKIy0$Y^jQCawI;=%Ce7GPq(qLv z1ATpBoG4CwUQ;Ry;$#Lt6@UpuxR*Lmi`&_`oc6nD1Gw&9g4zixWL!l4hC2|9_+Ci@ zqO=cLp9vO_AXmhp@ebl6x914}d%E_RZ7xYPh!^kQZf~ZYD^Mt1^_yb*{*(cx_^4GW zxAan-3KYYHm(A$!tV7fgB%qO;MuJwCIB@B+n2Z$px)JR!#Q$L$d4)~3eQ2u4G#hnG zaETpx#bN2!8~a{Y#oqxCWT=q5cz%q(yE%4@e|LS9eDEh@?wdOND?-~gCWIt*=f3$J zc$>eKN97Vx@^xd;Niur}`+YXcGUpes{x8-o#N8%gv)inJ;-zHsZsv2z7m?jX)Vr(# zs&lTTqaLpciod(4F}?e0e>kqN-W%HX%_0TXI=?W50fjGZYPCE?TfFyJ5sYn}n6*4A zJ@puMkJs2O#Q!0U++JSi2)u9wOLbu<7F!w{3;*0Rj=Ks}f}a+`2s|7~TCoqn2TzaG z$-Kn&t4O$nB;zyfBxxeyF5R3+@UFmtw&8d!0G@I#v85WQPRr7Fwk}Ym<(U3ZTb{pz zw+pc}viy}3rx>FuOm=_TT=ZqlY!81b&<^=J^Sk!;+5wThF^A}n2Aq$IOn*3Yx~S7S z8_W*s0XzMkQ9%T8Pm^yf5|lR$>o4gTJS@8=%VI}bmV{`un2HMPFGv9~l=>YH=^d=y zTi?+k;tN-bufjh9Xc;obKFAmwulsNPl5cLk=p9OkrK0p}?w%MYL>2ynCYYqWS>txm z1=z9hN#JE9x~txRuc_!X{CQv+H_`{g+m>beqwjZb!Qe61HHDvZi}Od+@8LJssms=` z2wOYE!#zLfS!w|`h8*6{y1v;tzr*=Tyr7h%ghY<+)V6t;r9XVw`P7S+=AYa%cT5m> z*x3+(0pEGb8~?Y1E|I1zF)sP5E_TFgQ-14zJA0Bob@0-PXikiOacKp#DIeVZ34zKP zatTVoRKRa6jG(WCZBC05FjJ`Q`yiRC4*+au?r(Q12Dd`HM|k5 zr7vf@O)SnWB3s|RMBLGq7yc%bh=ByQXc|ag{D`y8^FgMlsM%*OHcGb3F5BNTMQZEa zJC5^};pTl1hre{U@BXG9@xaGGpJFLQww=C}GXl)>-O57YkBci@Qs33l{X|{m#AT{+Knhb@|FO*|Ya@ zkCy9DuTSQ{kJ4ULXp^VcF=IPKNYo3fE~bv`WBtzltOT#37^atHsKZ>5YnC!+|DD2$ z7uD3QQy~Ly5gv|^tLpXCpn(rLEtaE&cT#kbGAH)@k@??@l6JE2PO{}}@MfxFEqJrA zJXx`5i1woV2;C9MWADIMR+^D$zC|HL3%ACl9a?1;S+|iX^Q+dDGSg$)Y7WtG673-V zV+EZb>!o_HB#F($MMhGs?B+o@1jLOt<_79QD!hf#1pi3eF5OeWvvH-B*ThqqBtH8o zMdy*8%|mFuzwA5f=^+)|F{y{mDGZ7QnCxz#Y}clrjz0}*=5w=lGb)=Pj4=GDI~46A zHQGyXezaB|bBSfHk9Ik}dQ2)zLcWb;wRmAfebSXzYoV=OtH^%Mh+Ng3-L=4h&z5{D zWav-=8rg@l@I_yS-t*79X@6LzZi+X;FB_WClJs3ldzdhfGY4rCj zbKlFoliK#_*S%sOm}CQM{4;exwwJ#_wXa_Ix&1$wd8{y>x_k%+ZAWmR5!EL=C!_)Q z-co(pk(s$|CgKCT%cOz-KuPjD^-2+F+cYKZh7L?Z(Y@(j(Vm%6$1Kp62d=B<;!~-a z&$^4Ka_vzh;WbDPv2s<7LDLv;V?tFRjqHmiqc>tAV6*z+o+nqe-ZO1MTjz_WD4vo_ zr>Fddo*_X7QD+8kI8&~wtIkov)eBnA9sUX9! z)`*>^pECc`o%(>UKukWtfvzZ5iY_StS%FUf=eOT6$*B09Y2R>?Ro!`q*K2aG;cI;I z#6gUBYYG)sqzvOU4`Ra8X4Ax&j^>0WJA&ZLHG0Ru{7NZJ1A&&9lrubb`!&>qM1?AyEcDTEjq3NT(n$UC zw52dx`mC?4MO;?w9>$DcmZHU-=Zl(5-^4J2WXG;d>q}S`cg-^8n%_(i zXjFVEaa!anm50=nhDzvO^kIKGsyO^^k6<>=q z@cscpkM`Ml+p<45Gqz$QB zyw)*xiVDJ>Lb=pk5UOHKQ~=^g(gdOQ!CNyyDc85<8c6xSG_VScCH@xGNl8nru1Ae7iCYM1f~8c>`YtoXLh(tD*` zPND9Rk19LL<&)+d=RtAqX zTPKJ6@G_?b|6BfWaz&fuws#F)yh`+$D>qf0NoGA7Da~Hb)9Z719frk|?EwxZbHBq6 z>=p)Z&%#I8$~lb!o9}o((0n|%I@`2AXp4TB9v}Wyv*llqy2dJePeER*!%}IW9D(-* zV`|qi0OwaYroEQ_B75(z+^sJK%4_7Gq{!y0bZxy_tZ?eWQ7N>97OF$O6qu1tB{>e` zjK6v2uh6RVYy0xkY@0C!*oNz315dq}s({_zwe@eQo4<0l@{vB`U3iAnPFvciYkpqu zEGyMJOB~y9BdK$*jm;mnzt;+;>&^_Q>fbaQ*wVM1yASbIz5nS)>HgMg$X}Kr?OiD) z=9{Js?Q*LGHXJ(atracIGnYxTY%@l6V1g{p4mMhIW|4F14DtU;3vBuEhX3 zy2Zcib$u7_)y;4P2E)SFh07O2JE+pgZUd^O=igbM>Qcm?Y8-w`pc%vtUvJm;o!zN> zUJ2LCE4!|jjosn@J0r@feX!K$67lQOIOWNgQ82*9c~#cB!J2e%4bF|f@2$(KQ`u9w z!e3t;SCMavO1zyA=Ru3`dn8u&bHVw`Ml;5#_*}_&>o-lf74BeblSiy@Y^fGs&!#TB z$XBJ}bKjS5UNg?1AzGjM9nrtfUs$yjIb47?>Aq6M`MZ+w3D{?{+IBb$d1M9Rq>X6| zOnzj>HxHSniIiku?n>25>{r&Wq9q^y6C zXKNp_6^%=MkpA%~n8NyAnE~^QIYj#?mN)yrqv%lz>&JutuW6hjxBvQ@s2ws+KT2sh zQNm(a1!+_8V6=k98s+b%nF~DSPU;oNoMb?<*8i%NKcQ zy^1#NS;J@@8115VUy2osev}a0e5voKndU0mk|InzBV?C2^8HfWBnOEUleF{FEKZX1 zi*hU%Z7-fyg*#K#!)E%LPB|kSSE^h>RQ(U%jbFL%b7+@Ci2~F1MW%(N1b*19Y94Y= zE73lJgLiASDx#AWwWtqK)v<~^@3fCX8q=83SnlmpWZ*PpChWdQ6g$XiM#aDXDpsWa znOx=DNd%p$7E1ZC0PCEzkkag1mLvQegCcCHki?EIVy!X8YlHp!=^rYMMH~8qdDv*V zm5rSnEAfUnukyv3&&|T*yQG}j4<#FpveE+^N?6~1dUj7qiG8TtP4yg`Qd0R?v76>O zG4=VDU%NbDnOK(1ry)aOeA-cPc}O6#t;GM-hV8Cd%~oRhF8=mPAeFT<@iwWjkn(%+ z^bzmUuzY;Ix~*4caZ-%PKb>MX+jte?Jxv_eHO0ykE%|_P`C^DIU-s%ZC(;!7k!_w8 ztl~BKKV@G{OYK|}BNWu13$rUm<@vPiR>jwcHO2PIHQHasbL>X8)>&^(HztN<->GQ* z>xxOL?TE3Fc{NsP+6`*b)}QL?(xif==P95)SPRdkBt2*pYj)3)B-5W ze%^sDReD@^Xj05kl{_#L@515PawMWO(@&^MH1ZqqK!s#QMqVp61dq5k2lDAv+EPx#&s@)_o0 z6IX@gm`I`04QD(0QDyC;w1AEBsHb2Xn+GoyWy{f9*3OKVLQOZA7FtSb5kBi&nl;rV+STgcYi%=>*pozW`7V+Da}Z^%yf&+&MluF zj?JAYzZwf-_0O1^Y^^;>R}>w6dyvg|NB6*D5$P5v2v%bl9s3M%U#in9j?S>i;n_nf z)V>fT(|CZ-5>r*5G z3{&8%pZJuJN>N+DljE`EQ+4tu+&9%@)TiT#TwP(_4kBQA?!gM*4JWLeEC7%B<~qqU z-+b<6QWWaJUfHZ!;Noe6uO`B(X$cPMwodaFkPO#Z&lHs}#|@S`t#t)+ z#!7>^y3zWCc8-2-O{xi#cCDXik(-!;k&N~WZD{zwOG>%bQ1+yS1K{YMgV2V8Pr^it zf>;r>`X}chuyU`~9o%%Knd6i*7H<#ssDE}DZ!z{1uYvK8c)%-^T_Y!2gXykpbI!|v@(^KG@mZKyTHrJ+ zesrISZv$iLrD$LH{lcemn94{Hyu!8>JmDn+=O8Ch_z-Bl2Nv4!5!8h|etuU2^?$EA z591iZatAA3>F1o+KQ&KyeO)hv8YLzi0~dBjg*MWz*mKSmVdWEEM*O+cKmp4L&CK&u z!^7nLc7_GPVwmITjXSvA)gtFSH@gVBmIRlN$uN=!xONX;XamWoapFz_E+5fk-6LSa zF1yf1%N5#x04^V47*@`?AFO%eF62oK@+i4q%C|wdwBNYz$EYh-4a*(nQ?Um_T+1fz z3Mp%$&-5+xFyoONcW~MjAm`lLCw*ctgx6jO+rfK+~%f&o+5g-qBj(REt6A?Tf7v8 zm@)$4HTkjarveRQHWM-_(=dTxY3m;Y%@lBRI6uoTz-ZyLb83(kLgzHCj(}4m8abRY zaN7Hsh26mqBa%6sI)a5zJ}o%y*eOo#;7@zS6KVN+*$cp^=)XSWX=UEI3&6PKd}wBE z)U*V|zJhlimdTpq0k%>QXjs0XnxkNpSJXVr8E>x_KPscouPf!G&*pMotj`+0zy zM=)|~J6)wA$N8)CFd^nicW`|4FllCO()NAW{&AJo%V(&E&J*|_&?uQXr#5R^3UXZ2 zI1g)MV-YgJwfr%WRz-9G>`dksGT|(if+(u%90JQnbaHAF;A%ZCq@031z_(X{dH3Qc z7EE9=kmFi8Qr-W_36KSPNQ?RS#VxbMZJ@y=@^s8SJX|*SFu&Wdvp^f7a>>Q`iD>(?8TJ9kbCAwdF zT(?ZCqYM^JTpN>lj@^G=uRYv{8|cCR$E_yF|s_mgNH}(bDZkovdJod=Os|q%smFq5Fh^B&#L)kJPqU_N>I#n zO4Yc7S5$`{0vl2og*GUQ3nv70538Z$n$sR&ABCU^0h5d}D7)7F5isUI`e`jICtCED z;IU0R{s=gl45$AiTsAF+FiD6(`CATquy%C6<#>yNOM4Yehph=-(WC&6S}Jh*t2LJo zfX6AhLK`v+Umz<*aQgXKEIhz1$zO#wRz^PNIK{wqyHWrwgF0x7&A`^RCyszC$!tO! z{CkNLcez&$6D>w{9R)BkHOg8WFfLIoTc%S40Z#O6LY7Gn@R#UA z?Qt(Dm$nL6JgcKF--deenfCZyD?v4sN;mTe$dt@qF*)nmmoUMUtRj^n!<9y;pjx0q z$BMMKuEj!SyDFN(NXPD7)(p0i;>+*csJuRl%;aDqPRMJ#Rbc_kZ984dwr6XQ(~Mi4 zlk~M_t4IGRsar#-HUz6FnWPQ~wHsMlob{6N-fxX5r{n5Yk_rGm}e&%xCa%cJ<*i#9=vJAl?Xm3-Jf1gU6{nQz?=+830 z!|ZbQf$z?Jz;r^C#`{Vl>IyTCVyG~@rYtM3Nu^HaCt_nA;dzxjRN`%Are+SaLFmh6 zMv9#Od=m9jv9Y@B-*)-O?1Q9&M2W(v_~7%5k5LB%_qi+$9@XN5f$HQF?LRe747OV9 zi$0KG@G6tI$HXjRS#nIjZ7y0Iz4-h!j5o`Jj7;M)tp4l#5%5Z9Lrj3!Pv(wZ_Ak*kw0^abQdv{~M+9YhgZ?vP52q#sHw z3`0IzIZF566RU5g_e&(i6+fFKKku{VWUAVdRGi=z?-{vSak|@P$&;BfN ziXG+=;Pb^-rbxoo($$U0;8uczI&cjMkA=mRKW0-pMN(wEB>Vn=iWKC%m6;M_8yYv3 zMW7K@>cIDCzPEmj1;yNX%swZ!`H98Plv&n}me~@#{@=y^DH*ZP51T|?e`w(`=AN=@&AE(^ z^3-0U=;EHLVfEYLAv_&%;d0gd4`ycB>1G#Bt!uS!Q^utzHRTGDDb{AY>{PVcHJTb4 zEsR(;dKy;QH+@|G$g$DkOV%k~6J?KW;bD}MJD_iw>~v=PhNIAil+!|qjG@(+f+B6o zz6LzNUviYf`k=A0m?wA5Fr+6z|3KiFEd__R*{bvp8k2wK8{HjlK1z{oNM@QHiHoiA zjoeeIKiz-Nhe*lqL?Fsrv3gLM4C6UenU>VNnJXr9oEpfLn(k|Lo?%AbHHBp0QK}}1l}w+!Fk2flb9X?WoRfg> zbF`~^`6GP;D|?(10kLFNii_A(nEb7_K3N*!R~66d>E%C(Wy{|ZSRG;s*~*B7mP!>2 zEYzh_2pAuA4^3Akl6eKI6l4oeDl`^`Zz|nC?(1ljzkX{~ur744Op#FuVD#X=Wy};5 ztWyxMz@Pd#JYL~0;OR1BrK4(r80VNW=Xv8t-c_f5_;-%;n2AEQT&&~o?Z=X2*wwfn znYiTbS$a1xx)gfei2!JZO5_@ zjQV+_RG2Yl!?HCHehfr%Dg2So2OD~B@uE2-28G?So9ID&dr%-m6GeHNakTML%w8{OwxU)R(uSAr3}=o8OrZpR4DY z!>GJvZgDNIO(r4YtWFhj`1M!E1m%`U}_oM5;>sNuC zcp<`b!-mTVhAT^c(sM($7xB24g@lLK{XfqOvL{`Bt1n8=uQeZE8+dlbA#$&^(yvLf zC*rM6uNhOXyZDc)XDfjw?sP|nAE5Jr1`l@zFu#Y3$Ld#@*i+kX-Z0F5@X^HSIPiAt zMU?N!e1`OO_?783?<4! zo9tH#UcE`Q;Qz9_I!M`0_IZtKt(UF}Rqm*J)cM@zAP=d&zS(3I{nSdPZ} zv*pXMtQCH2*vr^DDJtgn{S@GaSdVdMFifXdr{sE_Ht1qZ2c>rbga09oO9%9QQ2#=? z-@+E7P{mZz;L&sl4NGglZ;+bEO5f?y&+0rXZG4ynnxw4v8_W4+;I5zr-u}%Cxqxt0 zI(!;C>b?Wq6CwuEZYJQr^wrbhQS|kz)?j~O-`}?08VK=h$P7PhEmKrqC;-Q`QF#a) zN&cJHo(KW!>~WOcd(BEaD3Z+sMk<%#-=3!C??Bw^>n*kg_Qx%G_CM+5jFL>0gJ3C@ zVmnTgERCDfzXacDj~BJOb^OzAugJOXhVE3%(W^Hk?3zqhDS&2we-lr3LOnz;w;1MO z(IH?TP#|M~?bm6D*$~>=4JTG87cDV38-6D%V-7?$BIVxb^=E%9Dys3bKXjFk^!qq( zI$)f6^5>4vG1eju>xc(i-981)+djtOry6OA6l-3J6#Jb>ZEov0 zcRSO2K98$x4W&?ywguAx815SG=j*yhpW%R)gflOOS6EI}vm!neI!-Mgx9?XktI-ad zq~}Hqw@WDc1s$*8OO%=blLMncl?z$gb{395ei8*6t|xh8DxE`x65Qw8PR2PZwiR1 zmC*8KOjVFeEY!0=GJ4Gez+Y>2k=cnPpUtxCls+ExWZLRk{m^GRZu>X7`L~`#rv3gm zetK@`VKG+ioL%q6*Ys1Nv5SIT6?SS*%dNlqR^A^V8EXY;O%n}AF|keldTY}2`JE(! z!TTHp>)X-`c2U_CKX^P6%iN9%&_`RyDIO%;O?bO?p*}k~O398mR!G4(ER?)G? zo+E|9s`(=GyiM%AsXIML!$R!EOA^@6PF;UQ*#O$Xe-L)XQ5Phw+N8>ODkcf0@-`VT z@Ekyg^NN`4h^rW3|6G))tuJqCBpzIcQ}Xr3Y=eE{ zZj60756H8+u1oXV!&emJdM4lKjG9vYp!Qxy)lG6s)y4u3M5pMtl{$TvHd$!1K#WJ?mgngxLuUly?T5GT%k&J2o;y=5SmOvda1*;B->etF%eo7uF`oQt4p)6WmfUHghZ2xniQ7B_8 zrav~X<=&UOo%%L?6+>Gpx7=#O!?%Q3qV6bb_0z)pkP3+hxjlb!ZUI>~+9 z@h(c+dNT5{7RPn^omArUY)i)9MQMj!-XK_Z`mwM1HdUS&E$MuY4*uMu%=}9t2sINK zpD?KiFBf|&5r~PKri*DCgvjuu%!0c78H)%r`8=D)?L4P7VXf)#6|(pEJ3vhME}Q2( z1Dc*8++ummVgsG1Ui&_EYS8@hZAw-EsQS8Bu*dY!0(O|PuAy4VlwMPRO_HWiAp$M? zZzmwEJ8x?n*xL`Nf<(S*iPS+yupcN?3~`$L2BQSLp1w^*s8VjUb?lGdnNMa0!XB#0 zPGgwXJ8sgJ#k2o-9T#6WPZXa}FiBvtKj0L>(qCo>&sX(}n%M~;Y|KxXn55+n=d)t| z8>tRngfEW09Z|ib_O9pe)^0snw>U}HU}wF}Ubf5@)Kh8$H8nn)Yk{5B?fYkEy7SdF zJ$FoP_Um_NxQ>2=#m+6wK2X{Bv8}7h7a_DcoVj`}&lVD$mVWgmx4&9X7wjphAK+Oj z?Few^=BUehuEg`teGZf*{D;5XIjPQ>K4$TGiC*WPs>^NFou<`CP(SS65gh74A|LqDy2-dr7HT^e>@pRuR9 zVJ*`l5?47c00_A@OxHbJ`ow6)QEFdwl&99XqK zj=M1DbsTteVKSIk(WC$UpZEjU?L7n_rVX8o=xHm1ZTCjd z=_2|(gtk*6b~9AK)}`Y1`sd|HHa9p~Rpg2cl-GJ2b6FchDgHRr0D?i_>6WQ0VJzM7 zJg8!A=7XF~Z10RZcd&UUCe_F|tTtwi3ysEdXI>CDy_yCQ0!$vsyQyuvQ0^^G37*Yw zH65tBO>80nFZzCJCL{XSB|{qXC4&IZLnA=#ObcMO<{ZT9cVh(bIz|HA9VH-9PUj(f zs(8ifrnt#N>X3(XY3|t&z}6ibK;4b;JOgNWXhBdpWam@-sxGeY#w}dZg}BLfEda=# zQw4Nr1|n|S-&h0Is|7f~>1%}>NEgZveh6Ug*N@#T$6d(YT`$`Vqzzt&2?#*BK!Q!W z2Qtw43@LkOy1&{v^1XmB!sg&L8iH84c&9tdXu|u#P&6M#YvNLTxt||W&0Z22E8`Lj{x>*;A zaY39&*}W8raxpQ)4XTY>#kn{essyYP`e1hpNS~qJ&ks=mz@k^Afb)b^tP7*WM+7k< zAG}Sv#5(}cWVaI_{uV~l-4!K*b77IF3IKkr2V5KuStA7SU!j2V5`bizJc+f4K>jOb zkVy;>ZBu}51L@vyHv-T_0pspImkmH=cb=jBKK!AlTzWB=y6_^2D8LuL`IINrCzVTJ z-t@kN{LO}8$gC1}^OF?(%8~MCS3hSw5|#3gyhy-%@eh3!G0S~FcE|EWhxwY^+m(MY z-TxNs%pK18HMWk!D7M_F`7N}~ocq@G+5BX$lEi|u%ZB^*%ARF@jp$gJD1a?&LxtsA zDvgynM#_)gJ2meqjW?V|(OX@un;w<azyyk=t!~|=5Y@2mR~DHFxJ1*2BpnC6KxWEU{`Wl-FRf_{4J~e+u?i6 zRlDY)SMk0#mS8^svkR-2YvIWF6*1l3gMu@nRi}k`bMR;#@nX1*8VT6u2qh+Mn4Dij zzJS8VSRY;C1vH=KvY8IdiDGU!&3967x_N8>?$_F00r$^sG4r6TSIxBzoSmg@>Zt$%)g6wBl}Tzqux%~XD(XlfG*G~49`AN{c1r6H&hPtbCTzqPvRqebWYR9%(A`5OJH|Mu`t77MtcufA2i2wc5JZe(! zAVw~&cerVFymLr^?yfAhJV@M$3t`^SgL1Q2H;4X+CDJ|@ZyE}SJPJ1{M zPRcLEFZ(X!LT*9ym@x}RKnwvpXKdWCS+6=vE7F6ppi`%ESSKDP^v>v zq>evo z=aRXwLv3j$P`6iqqZ_bDrX#B-#r*D{CQ>03Q_i+k=s`Y8t=vZ!Z$US(h%a-K5>@dT zC-lhG_#~f>vi+4N7p0dIZ<3`TmvPLtH=A){rq2iUYS~S@DEvqxL?n^C!UFq-e2W5o zgN93PO$|CAx6c|H=%*cAhSAFu$s}3#lg~@Krd3G!p4V(zN|{i6Q7*AscM{(Ujw&>d z?q!EhOSX5Ca8g7a66O1|3@h~i#Rw_SY#oZz&7;ko2^Ck)wnleDEu(H1s!u=qlm6hs zJ?GDTvtyo33g0S7qZI5-5Gs#n9egp|A3>*UoWy9C$z{7OPngj97P3Ye28k4s&35bK z;iQ?1FM~>n%C~ajc?4Zxg__Vz{5SbMPfQ(0B7@cy!>qkxnT+C(E>DbcFoRnn*q%Ic zSz;DDbmRB#`p`;^Jf4{3J#xQ-nw|W%JV!=C2Q-sceWuTrV4ePn(rh1&#s$KB=CYl^ zGzMn}LtOQViRDZlF2f_lEmiz|UNaTV)&CH>Oycp?Cm;PG^07->C-ynWM8y=q3qUf> z{li$7Y*&~3V8b$uw=Iu&b6z74w}N!u%c7_aVN_Jl>lBz5Eq4={JVJ#cJw3~y8@CK zc>+G=E#9q}z6?f{1`>ls`dq=@F?^4jTckwJYPezqqy4f!B@jYHF2@L8|I-eXUY!)Z zOClYmfCKOKKYMtx?ahOOZE;O30w@1n#7q;?f6SdA-wVW}9xRE6YNvc>q)T2rRiw-B ze?a=63yfa+NFGTM`GOLRBu1r7@991#0*`nuxMpPU1-C_1W_>Ux2?JgbDT$$dKL5uQ z#t<(*{2yfh*Z9KA5``*kspcBvec}0Cb?<^An|?`#me2Qv+>-)wuT81uGJ7!!7~z=e zeo858eo~(OPe=a;lZ2?tsYn0BPL3k6 zPCSb_<4>eMQxD5n@^|hXG8*~wuZ76@;V|vkRU+l z&J6b3tT+2x>=fH^pdXqCx*$ySt5G(N=2J$z$+aI>WKj-g;w&a9 zynx3_w(=BoMhrNX+CCx`jr-XVKf1KJR9!Is*G?!Re?ip4gKV#h zKgl}1P{|*R`%%?7XtP{fuX(1D|H~)WrCf#$`^wJP>8>}I^1+Nft)u)Lu)O%zQ5&Ff zv*6YD!OKy2^mE>Us~1BYSH#Ob7a0g0K^SyuC2_U8NW@F9+)4SP0L|LRX z$XfZ%c3V(cL~V(IshzIUma#@g>C`SW1Rg7ukS+{o8W1iX1sG|b)Kr5nw-Jy?6Ged~hjx?pL=Jjr3o-v`=RPLL@QQ zj-S1?>3Z*P!-jY$GzCn{&uH!eJ*DUY5&6y3TSCDu@5Cg`f?0yS@PMFAP2{FDBOHhN zc+(@R?e~A4bI_d_KPg@W1W)3BgQ6c}I5PdOq)Gscr|~0oAy`$punNBGVnb-k_5aa} zoJW68Dd`z(j{m><2IO<5d-@&-dc7=xVu`>4l1PJ(umrR%3n2i~_7y~DaI~R%h}Ut1 z@qJPlL+shbZcCNMaD=2Gi!j!x_pRT%H44pdiU=wVSP1XTPVMii)>`KEAKRMls-Mr6 z6_3!4oGJp9pN(#yH`6EUH?JI|wuuFQ38p z(B2xZs12HU0Bd%_3WJL4OWh~u`g|aen9#F&8M?_gY8$M zS0CVIe2iz66}cZm@P33A0&n@75p26d(y zjq~@;FnZgCmNKF@{kEFN*`$za^=2+#KZCK=4ZdjKt;x3Ys1(fww`Rt*@c9!nX0osMn5kD=$Adz36 z_(7b99k`osB@2&_0Zxa#7pF$>{BhPsuWv5cL%*&*Z{WOIuA#T!J=yzL#n<5;pmrx5 zM<4{qZ~{6Stx-)iC+!i)k(Gl3*T4AS^J2U>Oqw9P=!#OK-eD} zWCC`I#>zJsKfV2mt+`(^G>^sY$SJ|20l0q}8VmExFlb)I+G=LM!+%2Wu56+1h^!kp zW$boXfs&d%QX(w=KJWw;u0R0m2GCN{C6=P*4WzB8Q@xms(?Eo+76PENu!gwQR-Sq~ zRDk0_p!=HRfvnq7I3SK?XZlb6O9ccI{rtRNuOmeXlloNph_Yt^e;>I=m0-UT*J*Fo&xjz8$Ua49LwuKP$#dM zbPTdMk(?y?U7tV#3sL0@pLXM}vG}H)eq8nji<_>uFj(0qhdoabt>ktQj%J<`|q!DfY-Xf69VBg z+{bb)q!z)qVpxvk&V%cGZ>zdF- z2D>gOf8w#2{1bJ@OSkKQn8))t;Pvpq1+>69fdKRw=k3muF-CyD*0t_=a)`IS+bY=F z0e$_`X-ga%v0?#uJ-g)qZP4B$1#bWuQemPoUC3LPOAr&(2RBdn8{=6w5kKc=Zz$Ce zk0d-ECsomvvFGVydt<5+cDTdvyRTn|BLLuQ)m*(e7V$mPvsXfLX`&b6uqAsuFqCft zag2$ja#ti|_EYblyZkY{Gx4Ibb1O5dH`NeLcEn;>9 ze{4o9DRcuPH)SOR?DDmBB;g6O$*&9Hosn(Sv3aq3RYBlc$(^d8i==#Ik6ZcRSKI@Y zICi`zUK<^%M!eohkl36AmJ#-rX1*@pZ41ETpCJX!lTWY-a$IEtCms;Bv1Z@}Cw~Hr z=&Os=IUj4y{*|cr6`+R3P8xEtfN*p|ksrr*s|*r)BsmVf5J#9@a;u`~-FSa*)J(=z ziePtQBB6PlPl_Kv&D%UMf%k+TgR~!k{EE%{2le42!WMN1^n+Lp7`N`4hI9 zHQA{dIt9G9oF7r|4#0!|S0`yNBfNS3U5GPD{sdzauEZx;#(rqm-Nl5WfyAR)ibTL$$1EZ*tg3r=sK%7yZ>E&wVM z>@@%Kjw?{|qIy{u0ZJ0=Gy}#-?}E?h*W@H|e+r)f=hOi2g)R8b-rM5BADQ|eIOHQC z&5+V5?}!qJhP^3JW*F{cxVEo|TS?^WAK+N5I*qb6^jBC5AKXKo$B*1;1A#^ok>(f7EOz?|sFuwMhJd#{`bq7Rh^BxFgjJzJC${3AJmfN_aC! zq3rQd!gdV^rd1rTkOa!$Bd@i$bL6}LGpMfGfW5#|GCt$4>}WEZT%1I zcj`P%8pliqD?t8|d(kFAC^gp_|GN zR3IM~i61{6C_@L)ORja1_Gx-zU&ym64F zhRTr>KnVwKRnKvFxrlJ31oDJp!If4i?bLJGeBb~GY&bBc^oUtUxM+zvL%Q$CL<6~@ zNW6s~oc!rCy0H$F##9FZS=0dPh+fO+Ej=#ZUG@G?^S&8en7_gM>Xb|Xv(VWNQdx9~ z9ES>@H@$JlS@vRpbjDzIK59fIqWlScdojeVw-Wzy`4YbTp@Ih_yIhbnlSGck9FVdX z?tb%{PEupQPuZk@?#@8dFRI%+c-lp23vb3JvCIq!XJ zpik}KA9yUQuRFL-?8kg-^S$k~KHh_B!86?;Z^hTj{`*S2gJ1Jn$LZO?8>*)XdN^Ir6mV0-a@*(OxQtdiIb$&=I{CV zEQydY6_SP^I2k)LVOrdrW_7XKwv9hVzG{{uiqO01aHot5P07ag;`2C^Ek!bM)=J=h zQRmJKq2{X}C{q70mRzML?wo$eRk8Bp{hN-%x0c*mL)6?nGFzyHrWvr+gDH{0yOL;@ zX0|Nx^pUgigaitdvUfx?A0~b$u8aOtQp+RANggAP`^=HjMIgzRAS0c(&`u^v;BcA87Qo3&x)?BGdzVOT~oSjSkAXMU8z+*uB7Vk zNw`*z64e-aXo=WxaU6xll5HXGim2|lN2XZHB1E4eE@J* z9U}=JH2bfSt@>oHX2KfHmbxy#lkhYwZo0dO;7Ui}yC3|>ShuzMb@K12A1IV(8Pa+J z&s&+fd zxQ(ukc5Me*leX;b8&uJ8&Yyh8gA+Mer*ic1}!p2GhM(J)b1p7KcTNn;hmp7<ANLgE&H8; z-U75Zc!S8vnh~@lR_W9{$-%9*-HVOs&SsCUvSXjc2C>(YrNMM>%-?=my;-A<*u?wO zig&e?kE6iPdp9`DyGHG`R zVnE3vYT)YwV{<#r1yzUzVf09+zhx;8=1UwoODE&UDfg(Cjna?*w!!@)DHY?ElU&M< zh#TxJ&g3J!BKm`fd@ukfa+=;|vCy$`!W&9S`9#Wqq#*~nkaQpJUyOR$S4Vv2HNs({s^|pLl zjg@a(jNvk>7GXHbB{ru>kFGbg92s#cOFVP5K#g~^CxjwHrPRekrvD5XX7erk$%aKG zo?XrETaecF=N+?Alr0fKx1#J}v9cs_X|&1#uYazX{(>g^l*I#kpWY=d$L)hw$2jH> zMbZ8~PWgNK&Pp%&ADhn_<8(7=cXUBIc?16+08K!$zrlQ?!AnxdMHtm?t1!A~UVmAo z?g$}un zcFGhzpq}1jRf@lcZdNKTpl)*Zo(!FWNLi1e1!t=W{y-V=pq)N{63Gg#Ai3owsp+Z` z%!^d>^2sue_T;r&F8OY^mTow+qySB~|gT)D>z=Q6IjeS!YTzu!t zIHE9uCmxvLuDF`buDCCwU2!?9xF=O1r+pJID6>ExO~R^0kt`c;kzA5gG^wG3+ru{` zeDQ+YNM;BtVnDme#NcAaL(8GGsx(H$L=j`l9!k67$qcTG6=$%2JeBuG0p*bP$QL;S z?{M{GC6k>@l`46&4^7Z1$gXKK!(H)j*0R!hxP_qWa4V*(Bmhj^G z=aGjTR^)hz63MeEtoH+YNFDm#>^yB$D!x6^i3eACY1@sqk8U+^-5jls4C^%xrKYpR zz4`H>RB?i)1#X4#8D#aRa^@k!a@W~+n7LG8hEW;7r@%7+w3}+1VG7P&L|4%KfS`in zovom-wlGDf3VB?kNm2+G_yj`9k+Csat6=@9Kgt*S&0M}P(!0k# z;xnAj7xx%57;o6%V@|ja7zPUU@6PFLR>ZJTJ8&<-J_*WbD-3ceq^x3LI$fkAq%d6e z$9E5ojPeD%A&{Za2&08*DB1ovKW00XcF!a3#9`;|3bWx1-(aNtJllJTtdYubOMNhB zA71nDj2M92SI7<v*)kgi z`PrymV=9}U!L%%BX52-grdH8}a`wx3tJux$LE9xFn!6P*AHJBTT^v3=`Pm0gKPR&J z=}d3IJQ7amHIB%`z(;^Kf|B4SB937gox~;{`IMk;R#Em*!K5`}PEKd3^`+Jxf(+>N z2yHo2iu){V%)Vn&cr+`3j%|!PrMVH0laMbZ%NS@^c;?+fTmLqTgyKAo zIbd@*2$v2Ol&SFO((Kb2d&Twv%oHb){L~Z_S527XgIMB!XZs;2r9qSt&9vmL)kB{sTh~z+WG#THUd`WyXIXEyjG8!Kq z4JP#s^a{ehk-p)vq2a+@!}0#Hz8jOHeZ6D*lcT$N>gAY5_9YU1BO^g+KubJ9uDh1R{@=BDt;5A0LSCf}Do;4U8uH`^NSS?2Zrg?gdQW zjfuV?Y_rNaA!IkmfXyyf5;%qj_xACUjqT{$l^h79xW%*akZB-4;$7~Y@g$a~w{Ns> zxF0%xU>D~C8VsP(14Dhj>;{L1kS(|@g6J;}l0xGI@?*8Ic>9LEWpD;)Uto$7*`KaN zR1+WCyAP5Y>mA%buy-)ttEB9uxygDdyggN7asVo`cW>xGF2SY_WDlb{TJ4e~N8&rM z150NX#1@#D%@~;3zJUts7R(r!q01VWW#2$0)eGPX%uMjvIms6BXkK}92TAl!j}I-q z@MC$X7Ps|wnnpHbTlV}R9dK;d;-o2lw9PccvxWMc2XiSq{t<4=@`rJwIA)ubmJ~+3 zZNFGj81X^phArX>reK^Qr)0z^JyHqir2@+dAr1>nC<-7(6r7NDI5ZYlT}`45b|)+LeG-Iw8qJoxoBn8PL_^{f#}^;0E&3Ms2>kPI}Ku5L#VTG%}>Ni zsR!Bx5}P5g3Po3%lb^B>B1wd)%e<|?`^$%=0T$3Se4qspxE8eEF|?E?vKyrK zkS@6thcR+?nCmqTB`lU>@CTHsmMJs{P#W*~U zly#qI>UgeMu!3-E9!`8OpV+(GXW4Iaiq}zD)|>>3D>GQ=%Nn>T0W!l5WTh8V-C8Mk zHCSGR@<5B&Ba_fqjKh8-V@^-9y{Upt^#)M~a$XfDVvdd7(2qOP(H1ut1@FlFvZu4; zf*Mefg#+XnC-ND?c`w$joByp*s$l?HET|L>+h%eeT+tGcl_Xn&r~w%{>4wKbzu#U+ zGV{1??AC}b%&_bL7v7vl$ZYZ81jKk?mWeNou|qJR#tUF`WZ1z}`mhM1QIgE{@35Dv zq$f#A;U1{iVlvV*Y1v1!qwrC0KgbkSXZW$CH+(s8^$~z}^7ADWz->719XsoD)EPH; zm*DywMqxKQkFuJ)L0SOw;-n~EQc7&axss-cvjM~sAkf_N6-SQ2jZqoF*Pwz@5GzuF zBqfRP=;*u64Ccgf3BJ$g_I4nhcWfvr2wgC4!80v%A|_*G#GbhAQ-M|-%qcj&xE2&g zEVBiYxN$G1CMm_YEF=OFDU{90T%SD#6UgRzz z$%(jR8A&zvCd{kv!}7F!N%$EL@^_}CmJ)AK^D;UQP5@UvcGJtcZWI^iES88zDM&um zkyJLB8!5uDU!6o~VsZ?6(dk5w02=FI0 zWcedmN+e5V^?J0!)&?R^X5FBQWB@IXEL0g?v|ch+P@~)iRtgJvCl{F7vG& zS@P`yl9lSI2)9qYNN#lnS58=9Aw*A1QE_h^8;#udi6Bb~6W%>iWT}rx4Y(7{3PvM$ z(9LaD2p;+UjY{kRXi_%H9Z{AK<7?i~)(dE&prRzMbtKaP*_y%7G;ChdT5OuMx2!7&}) zjSi0P9CNP)y!tGtt?p93z{JL+s{{qEZOnV8 zpdhrX3-bcop)S1(Y-iB2xuA6gj#5GF4q9MUx+xlM3F6^53kr^?e^u9$MysDgNg)zOuZseprKVfj<_In^F1&A6l+nQ_*~~# zAaYErEN}%b=4|>4MBA7vK%%ksG2bYO+?OaYonz9)i2~QDXF;<0tie>)DR#JKq^p4x2d(nhp%n^(HLQ4l)Df-cwLv`)Vf zV3TMzOZPeoba$AkAs9MZyw;0Nh}vgI>>72nx{6N~IvuewUl(_@jrlHbvPtb@>a~zu zuXY4tJHwKJaUCkyVfuw@CYbqwinp~rP>+KA@hIHZm{%!-gmZN^h#QaM1!o`v#PuTfhk&n{($KkqCVQoYdDY^K?<%dOrL^C3Rb6`-KE7(Tc9cj zk?2XLOKSMGQuYD}{Bj0RTRHm&M15)Vr>(U0)213Y9bRSH>DQ&5(Lm+U*-}zBbaa>1 zI#E?uc86)o&NBM1t0Fxb^Y{#{Wn6}~FbkojgtF}jwhKD^CPYVvYM_9ecI}gPj}6k< z;nB0*iel`NwO^-4`E`UU%~0Lf*}Zqf*&$aNOw?eN6Akia!QS_Hz0ok`-{Fam?|dXu z*(~loSad*0aiIy}^`H?cJJ9r8!ha^Z-+d;u@SZ6wJI{oWeP=@WTxY_{o--j_$C)1e z>KoDJ-Db`e;x%)kh{$sFTVtsE;k$s7@&(}@t|B6C7X`+>9g9Au6z;~#UT za_%wb3i6IQMRkrj&g&atn?)wrw!1d*L$@Ari z0Nuw4ir>poL2fUnc)eayg5#5<*;FB87OoNDFXy3GMTD3ESq;k&3rVh*np{ zD!wk2qeW4b0iG_Q%Q?D~RG^a${sDH z(dD*um_JLjlI|>Vlrd0BIkQABX`ZwxCP;@z{dM}ZpWlxqY^WPcsh09$xs9SIxF8>v zq)a8st%RRTb4Rt=OZczUIw8tD#CxU62I}w*pR$)+S9)xBjfi&DQjq*s%Dh|FWnGfS z>Qoh0fX~XcOqjkZ;jt1q%wZ*B%pLE6?kW+y-YOx(omC?HeN{rYdlgxbr^?MIk8gXWD_-92_a#UDIa<=*CdM@--OXOffP9)&f@D^gE=nq>FMuLhc^?n+906C2f6MH4k{pgc5j6sZHmBsa%%HrFIe z$UWa-l4*HF)CFAMa&In>cOkzcWRmUW9{wuuSq^qyva1u5mao)|n{x!ekD1bFhhMk~Qv}c{0(iki@G=s}lAr zF(w)m9+7O)nnd8MF($6-*l#$Rj*ebZqf>2$onNGtzx<_ZkV(Lq@21o$si@W(nMFz zw#Q9c-wHX0Y@$mx>h_bf{-g-}n9rVp!g&06z)98-v@^G{OtkYt&(4{+P>*k}o3tF{ zoWD0|iOeUdP|$Rb*(Ozs>O-688;5%-CN2B%Bh2U@`d2$lbi};gvq|fIzDpDk?JPQ& zxJXjkD>j8q80e>%j&*9%`lWmx8;6&)++ouCr04XwN$W?-bq*%FuZpgKK^m~UVAAS# z&>M*+x~+aM-lXMvRS1%SYX+2rK*aITjRfFk2;ngk&t;h`{;j&@fNL`CyiP z$*9G4r>u!0=^n@}1J?gUUK~dsmY$Dde3`gkMifD?W!#TkagI?hlEhyk<$lr)@4b{i z6vvAziYn)>WadkE*qF>8p*ACns8}qR2dD8(2b9ykcR3I#4Q1&Ayu59agUrFvZJ5rd zveMHym73!8?HT(19L!a`Bb0Lto8uGsy><`#5I9q5b1Ic(_6^9x#v!9%;BDU^+_}-K zhGFy-XlzsJR0w{%pwDnj4-WMA4UFCpAEtZZ=+3c$L|+JbcyMrZC_cKI*;o1DO|krVpm1CUTS1KwOa*gpis5y&JFPwejVa`uiT2BE>n zMu+!}jPla&+_!gcAb~EiM9Y#*TGm9NIB8b;jZOR3VG87@{9mUWu|E`Ax!wz~ zlD)p$uK;Cp;hn?|ogVCo!*54>E{r|43xQ2i#rXhw2rS4#C_Xj0)j1=qgzuCO=q(# zhxZFP_oquAuQX&F&s$t=Ej zdyCA)@iE{&N8^;itfy@sMP>P0i9 zqVf0PN-Fr&0wE6N@4Qfx50r@RU&1ijnyQmCW+L}zggC?1sC4R%ah zeAi?~7;0cbk^z<~%-r0{_VWwu`MSYAaZ@y-i^)m$i4Ts5s@WRT{t&FRL&ih)*NzMB zv(3CKn?LA&Ej9t8mfyCXcbElE5q)-oG=c@)lER2TY8)IZWQuepyNy?H?#vfDU`N5s zj2rTu{ouM$`8X;*CuU!HM!u?AI7Hf!ST&2$fYif&9$PUh0b zB(YoiQ{$$z_U+siZi~QxJKmN1#GS7~!5E;j?<7lFd^A8%>C$mOwLf)?W-S#YBn9_U zbL7IT2kD|z&Loj}b76WR3}njF2MXea@oBM#%U3ldCUU6xUHo{}yjn|siFsHpiE3p0 z^n$EX@PamK4^oo1(ATWRARe7SPt^Tz70jO9^nC+r^3s2>h6W-5VA(qnX30 z?Uyd`T*f>9O9`W4blog;zhH7YAI_G-xXK|e2S>Ey#6wv57IsiRazWgTlK3TRaQdJk z;3ZL-zVU{iXe!EMI*F%kQj@QVaLzA@@8M!)<7Y(s#_{CL6DR z>ac;%HaLiE09%Z1(RU=zGzAzZJu z@1x^A!k?sFN{%=rKBhBDpa1JOVK7-@)m-8YpiU__`6GiF#2{|)4@f{NX#h3Pzs(Uq zDdr);0KDNeWI8n^_B{4khPZ3!STSk`TJ1oL75&LLww`kjjPsEn-tfI*p^st1jN>{> zT72HhvP*1#uErjAbYH3aFeQDz%-##)-7OwyWy~PD)Cv6JQ^eXU;`CsDOJh8yf>?-Drqkd%G{=NyD6gildmRXO8Y9rb1xu(i{=m!(Pe=NQd{%r930ICs^Un8e z4owzW3Wdo~s*swD7YZqPp-_C{M_duZ5R*d*$rJH>LdkGGvO{@O{j>H0v2n~S;)*oO zvm*=|8p>!5fd4}lN6s)Z{Mu=jMma{|W6rv6o*bglyt_VnlrM!AIK4a zSZtO`Q!`l%6{7tFWhVtS)9DMS>Yln=Wl+R7n3f5p zc5#j$bjbb$pl#)g6kS%E0Nz<Sa{ZKR_IMT&Q@dV9QOk|Ixl*V#wG#qZ0w+pb2Xf!+HjU)Kv1SjAaA5Cs@_UGua zZHgw>u`YFg3cnJLi@mf#!;PM##lNH@t|+7pUJUIqW}vS@J&9q$skw3YOIEv$?3BHE zG#7xUDFjt0(Ai}1`z)69T50Y<$J|VU@HItX;4S(JPbDWWT&eL+~Vx?;G zAfC^2NBb_kZZ%7dl7neQdoQdXW)qW-bCEO6ugH|{M9mp?_2s3;Wg` zmpui%NXKC#f)E373V?klDT@<(w@#abD6IOSqV z7``}?;TVu=!UCaokvGhE(}+&GaWdNk-Ea%Lu{WRQPWFuh&bdh#!pTW7gb9rp+f!sW zqO}K&f_uKU-a!KgdNxH@ya`_sy2thv?Ps|P=#DsJo}XZqV$#4KprMpHB0d_qH$N`= zj@%e~Gg|r{o5M%$ko)o~J(By&^R_1ebx_9M|3VbimX9<(STUCK^$pv!rNIOa=wWyC zVd30+_;^8*&gPT7@kxgW95KhgX^a=BB1M*?;-g&wq7#H;(U^kX&QFg|_(V3QoXZ zisL8H_@4A3lRSPYT^J~moX0-qO91w0=G~6{IGO@|o}Z#QuDsNaQU!>6(S%Kjw~YmZ zqymz;BPfW#W)q8wFeN+MSdvdO7&S*s_b3E1XUzLG|6!1d81{z6T#DFeYuRyi!GkdfuB)S z>*DPOPrW#AziH9YXwIw@bpQq;<&P5@E%}^td%i<*?h1A`6r5`98&0ZiF+j&@>;Hx)F1k&)6OYZ6O~-^~?YV8y9L26w@< za5)M^7TAONz4@bff(v`c+Hax>OVbYq<}G-*2b2W=<>-;=gBiz&XssaaC8Q-;`n@Q-BOBRms7v-9;` zKS{*dVN9fsn0YC&eFc*Z7_>&188WBrgFCMOMe#_LH`z-_SX}!H;P%=!ezn`8#Z zjJ|}lm*A)f{Jb!@b@^*)8uPgY` zJl9Gu&f}ie!F<79*-?r^i{$xxJyOo5Wc1p3V!i6_tgp*W$5^VHs`Vbbm*1_yIw zCxY}OA;Z_j$99oOEsRc}66XiPUEyX|$v)m`yU;ny!HA0PcF*IIYi>^_6so?ji@OC& z09U@a!@zRO?k`FPzRX~cb?9~OY|%O)uRaW2gWMI=Q23t?D_Dbj*mYaeV`I1~kxk7c zvMI|tXn)j@MDwtbHq0Ypr;Ik@u2Z+muz$LOkln0g9C0egKAzKOFPW1{a=z}k-@6(q zJV?HkI8vOk??3iD4;x(XLCb){T*wU4l6N49@5mqpWZ1}rk%)WA-Xk0A zApf~e+4sbr%dmir)nO=^A#&gTElV;AmQ0@ z!5GhF_T`QiQd~qk-y3xvsKF+tiy8Eu0$bBdbicb!txA)hpS8pG5_(;7iVYYdxI8j_ z(BhibQ$_IaaOdj~Ed;7MJY+tbov4e$_agy(kF z3eSyzZ(|u2gHQ@W-K+ybtpH=d(E=Q8tP?^RfNe~JlnkI8gj5bP+?nGk!59@OwNWSq z@w*|FMtDlW|2E)h16&7j90H1#j6v%7caS(SRvLJ_L`tocLL>Zdfz(q(ZG*hJC^rMJ zSdwl^2}_UhVuWo6-VVw&Ln%c8cZkZ=1sJ5p;I{?vycQi)Zv*P5CEKWdQV_;gY5`u1 z(J9K*MJY5=8+A}S9i-BA0&hFDQw&O(0lJpNHp6_R8KI3 zAe9bLi!Lfr3*a!NLzGe!(oa$R7W(D2ivcxCB{@j#iutsNKEnLks0IizB`jlFv^tjm z5QW-AN?kM_x(L%n)EK11``%!@l~bbcur)gf-%6vPmHMZhQo^*;qMh0)^$d-nPU^dM z#%q)Yh%Fwa*6yUXI7qcKfWliG+a^V2>LhFIN=@;&)LWHBy_VA!ZlV z#Gsjh{i`Jpu|rgrDCLUf$FbWc=AA)hZ=^b=sO>u8uY<-xE0xBezBoi<+@QSE)UO7$ zNsLBhBc+FVb6k|l)C#e%Mbq#c6Y~Sp(2^b0f*p+ic8hjCG2ImXt zV|CX;*Z@3)Ynxaeelv`%J_@)afSsloS>ibc|Jjmhh+hxCCjVWTg*f9PSBL9Bno5>} z*amQc!4Baxg?B-jKDW!m~7?6IcvJA7)-=!>dye!C}H4Fg_&pDXX(*-EUG=;HGijZQ_Q%-N*>~f^$ zscybHNHkx(11_zRdJ^lgpGuqo{84yz$4VoW3lCisrLob-dVwD-P z+_OV52)zvD!`K9rxd`>@ft;K1un*MTpjpPH6}Dr6+B6UCR|Fik*Cg;BrMfng>_=VN zOj@UzB$G4xmrr@-9a}r8w8c)6Uj`e1XQZ%(DVl@)sYr2rJnIUSMxMrDIw+M5qm%~r zD^HJ?$Q?yl;)n9A;*vN^HBCAF%cl1MHly^ZH`jVfy9g~-PdxQP&YI9td{)%cm@}Pm zgl)$8gGUtWzm3_p-wv|icEEf}zzpf4kZSw&0UoKg?bio?Xyx@$%-fl^Wx^(=(va#e=aOHz!juw_g?{NgBu zde7cn! z){_W}h6&9ZXy8v%XJ@H4yu;br{ZzXg zIgHOX3_^@72wk2k4hnDV0`(?aZinog*-E>u@%v~PPKi=Oi>?lC zbEx6f8VN!V1UhTb)G>@ zt?>2_ns+#lrf9VJdT+UJY^_TY1;<^EO6ZH@0BbOEqAl99a@FE!&I4*78QIH=~l!w1OfL&9v4VI}U0&D1_rvjuo z6gFD6aCx*7$`Pl&LE1r*V->`X^3gFaOu!0aY*5R%lWL}FOfCaite-|A?*%))cQktE zl-sTWc{j>BK%RYhDzk@s*?xwL7Eb?eRG-7=BlJXH<-8@NRkJ^pl9H-!gzOL+3+vSR z;IA#KwYk}{9m3oaQgv;T@RN{E0_IR&SUb+x^vLuOle_`PDjJ15h|88^wthcIGQ$n~ zwaV8}tU^ zx8)vNH7z8pLCYW*7wg4VwbBAxD=i(igN+)6|D8;meMf(Q0b9y&Z6ad>i;m{6ci?#A za+4-aW~pn5%N1y1C8|@Kv;DZMQSfnLkfC(*#BU0L$0t6nzl5f>u5>5Dz>c2Xut3AC z{6IwEIq4X=^t^_fh$sz+?B#|RGyA~#pE6~vZLr|6JM3k)ePs0&l%`efXI32=D71IiSLT4R zjg>o9Y(>^-3}-o|@oZcxwg#obF&Y&C%P_MKp8qDT#M?^;PDEB~ueh-~I|P$+_P+C9 zsgiE>3V)xlB`MP1Y}%8|S<>ok)r817A&EcGMzsT!3SSK1E8X^DAFfAp%zny~ zCdcdt&VMD(dL?l7z30EsXSKAra+0}DnWNQd2b1qhk5H<7XI=_l)K7!iWVrjz>h@9& z!Hxsu;E^!vc3b)|Ot~L5GcR|FK4-+~RD8^KRpg0d~?T<7-oSDm`11 zVp*XBangIJ>x^=1duzR3mUlG(rRotXFFrf#Pb-5~)7V;fy)Ka6P<}-Yb$XsQtNFJ1 zUfarRv?y&`pv_Qy)y+S5jgzfTdDaV^DcD$ahCerlINo-KJoT?T!t8x6+~h2`7sl$2 zIUBibnQEd}g$ggf*lT;4m|H(6O?GvfDvg!JCbt`5n9`YHoXXvGlNynGglsuBkg{xi zkwpzM#bc~IBn*XdYLRK`Znp9u$WkfrO{PyPN?C7?%^tLyqOV^-P*?rtID z$?tD4o$_*7oMe27h99=VV|Q$wy<@}mUI0fmtPzyhPFP{DQu8xLbPT}3jkvhg*oaxl zq#1IQ%@I{`tyDJ@OiCME;OaSx(&O1#qt%}^L0D(6azzjGoluGOgnF8xXH?epurjAq z>Uvxkd}UA25(!`f&Z?{p!m6=?R=<0g=fui7FUGe%zNP1PS$y8u<2Z?B&#geK`%bQ` za$8V2y8`7db9&`+x4(SLT0jdu!Lq)5iRlc>h8|YoDVENj3jI*e=!sPtPjUxiJr%f* zo_v}si6iB)zQ@BGa-L-wj#24E3yg(|&$Ph!4X}0A^psqz?D3DkhMw{}#sNIObf^!{ z;e5+lHJ&fs%{>9fgey#Yi#rF-;grkOJ(a9{uEstKT>D(pQ))4KT~E37_e5o*sN`9X zm;UZ)gl?p)=<$2}B#i=2y)5sMd_p?+QrF{ZlZKx1?$C-JzugbH1)hId+f%w#miKsG z&A`5{;8e;sTcVxgIhdF||IXqh%tminOPqyi=Q`~yPs6P3VI|MQG^-l0?1`A=I0lq6 zF^yhKNq=qE*>IPTcF~}8O3Jy5dYE)JrolUR0&M3xHwM<*b3$faPdTT~rzt{QjjQ>H zF0*>Rrl*u?8x2b%bj6-*h?3jPjz*Er%QOU8jvnnb`#|-YzxMfz_f}I8D>zF;`X=NDr&z5Dw=oaS&(r;c9B6GJ|#YiE1kBSp!4SF!+8Z4F)VGS?l+ zYAUw6`d4j@T4wchc@Og(Sbo*3tEu?*5=^x|>EOfTk+FHoz9uvKwrc80Wy5gx1JzWt3San{y|@42-p=v6m`W9KW z3G4D3_tjS7O5d=nwsKeg9$&SU+`p|@Z6ypA1l3p0lH2apWfFy+Yp8SW8#eB>b;4gB z_0m;ys?1BIulh_iHBI=YdbN$Wa$EY@ldR(RVY|H(#{Yh-Js~_xC9{uL zQZ@>0mRo*`HR)9=>BwbvIMBO}mmEdB?{8y`C&R zQ_uEQV!v}=$?L>!87klQE)_>PixBfmrD-S6khghPhf-GIdUe1%rL+I+&F1Xie>~qS zDwV8+^_J7`@>E+{|KOtk!9`b3lUG~mDmlMi zZDsb|MF6Hl$n68wbzZj2RS2~AF5YUqzK5O7bqKC8!6!w)l?c1gTq*t1N3dP%J%U_S zrviL$Mc%Qinu-^EiA1$csKDze?s!=>6|ww#Jk{2yWo`uN?_ps#b?|9;R=0KR>0!aQ zhuEv6XK{nb<^KI<=a!G^Iu&33^=Ev=NV=HBw;JQU^TYPqE4cSV96wTS{+NApH8qd( zzTdvmqoXpl;JehMy0&gZuIqX2Of?nq5B}*N{L^YG>+i3B8onh`on`%f+BB>F7X5wk z{oS{ltF2^zSe5v{zA8~&#-Q`syl-!&lIz;4Y74^i*8i)tYAT$1ip<}Z)i!L^@&;dr zP;F)QU7(f-+6W9fO|9-gD%Y*uk*cOD{(o^8vDtT5Q;|!Ys+qm(TsHgdWd?g2zufJ8 zwqIT52EYC1QkDuf=~uexN|*25Sydal)$Nj2w-NRG>)chp1M>UjZb7XN%NG)=V6PN7ZVV ztJPV7M57PD%szVlt616Xu2jiRxsqsWRCqJ&>=Wm|n&tLQQ$CljdVyG#HuA&eYw)VTL#T8I#OonM$>OOrc2z7f z__xEUQVnvY(Dn)Vwof&zw1=OwQ5Sr$8l5!M!q4SYfxi~$f3K4((M4;AUa$Jy=fCLQ zGy?l0Dp#dj^he3hI8|fS0((iSS}R!}bW(+2~qVb!?Q7Yo$| zKdfr2r>g#5{p9(tl6SZ2ta>&nS2rdG^0}l|6>Fd8{>@15+Gne>K64J=pqxE<{+pxx zM=+_{F}d1k(^T;B%xd@;bntOBs?vJ7N*!dT1@TseRb#(|=)aiKYt^)pRTIu%73-j- zzm4i$2W=HLPN_I-_A}?dT9tTUrOt9v#aGJ}=N1wF$RwNn_V0fc!``d)Ry`&xCcElY zV2az-vpX9QXd`w6^=_AC| za7aZt=B149Hd3PYv92m`YRY}2+3VEA$POs`Y3FK~y54U~`=@S))En-d6IC#EgFb=n zpSq~?13#8s4gOSFmDea&rAw(w&_&}_AdS@X+J0%oPjMEQ~# zWInra{;T)9e7>D3-Y-`?>TD98;|JlZVe{y0zew-hJZdAW;HipxE-Kr<6 zr(Hv+Tds18!7-|0 z=d<+XjR95MB3H4)a}2Ru3RR&~)ekg#b!r>gI4TdDeXQDw9ljJQY@N+=mAZUYDixp2 ze(v|Fx@C6aR?7{cu5)~-8mn1$D{Grup?0#G&Mpl$`-byhZTDR?s?z0hm7*k6oOji# z!DUrfqx@3N>$0|!HB&BDRV*CXE$y8v?P8@v+^ zz#5pKX^1hEC4y$T8tsyd3XW5S2Z)02M)4jXYA1`Kl9*ND#^Ulo>FY+kZfv`=LQ>|M zl4{uOaf=hU6}M5YmV5dmh`%aSX>hBDef7n!O1ndQE-a0z5HE37>ie`_@zOySL+LnG zv6Sk)=E1v^+Cg@L?=pyLuonEURRZLn>prd zX0f(%NBsOZZ6%ef;)agN4c$hjW4Sb{LJ7)G>h<$pCD=ihSvWsy*v|^WUJkt^Vx!Dc z<_?B+E^o+X2XUF>oNf(hmQ$$Uh5Xerzw!orgG>o|(OlsPd7ryc<|+HKw31@TJIQNh zo`BbXl{Tp0&DwsK|9|1d)Xi#YXZ5CMgBmyRmCE%hPw0D#QI)TPR{}SxF-pF3=ix2+ zQd_6WTk)G>-D9V8uOgrU`oj8oa3uNo;1$sotkZG8fX22N~apX;RGQ(#d-0 zR65-&m8$Bd=Wb2e!>X5r&!x80HnPpC5+&DO=gbMemCVq~r8nSD7j2c8#;unQo#^VR z)ixRKQrlEkE0`SJm^7(si_bkL)|dvpUb$j$nrLy=7#Ou|?qy6g`s0?$dnz3wTNUGE zP5-B-S5(i$Yk_VNhxkkNcln$%;ng`W07xs$!iMOVBYb<7nvg*t7 z>e4*5uB>O4lq1IR+wLlWrT%P0(g_?di8^nSVNM-eHU8UMcjNP$+(o--A^@c+CyC*J zL6L=##%jq^OU;3KDpKK}(b_;>&Nc*|FZcZY`mh-AWCx0=6bnhQKPJG;MkEasoYCc? z{Iczzg8Tv3p$qb#8FEA;PAU(SBZ~-HVx4P8{wh2Dr(Kyq_(kUNpc!HH2G%ZIoK{f((C6N%_8+)K_2{kYV=wwC!qVy-k1x{;D#afmxBlR z_cVq}jn7j!Ufn8em%p~R+It05J)^gLYr5!deGiC#)iFdwj~!D(^CTm9z(hp^M21Hv z=;}J^+BzvPPi_jticL!_`Cw$FrBS4(7nG!X%Qg8L8WxlqAHFH1X%>I8(!E}9i1~W> zFF(J3e{**SW~MlqolmBw(wWWiU+Ff{0|-}D_Jny@ul%(Bi03ai@MQCk?6hLzWG-ve zBLynQZr=27L`Ze1du3{4GFWBdtWNdOeAEgC1x^w95Z-Ugh<_{w)1q!oJ5VV}tM;V4j_=4!0NMt1t~yds+)yhu?r9#cWsECkH}xU|cVifbqv^j=46an2Y>;tz-G0F|JR|2`Hux`z zYKn@4RjnA8xv1TpyX=`a-$d=7A{D6Gqi3s>xbji;naXL;j8eN)2`6_q9JS$+fSw^u ztRd<$8$=|k$E&A()<9HevK7JM3Qsp>stz%Wc6eNcEz02)dh6Sew~A4?@|RS78I~jU zh0aD2oO)#AO%hu!-i*%lo1kW3`Tg~XtZ$dXBPjky#E{k2pHrvTb@Zzu{YZb zE>bZjBEkT7Low}pr8+M}wh`{Qv1_jk`Y-YvKla#>*v?$R6FpUr=v~)Van+X~){wXr zT}?BkjY6UZ&Mg@v8eVBsJ!*ounb7@}s*{QeuLgX*)3Q6fk7dt|E)3)l4%O|jh<%l; zK%8P?k4}WAw5W2N%eW3!z036=C>*6&!d1yx|B@5F$qpR#H*o0Y@-(Fv@kghk@uH@& znA(t4DWKi0Ya}Jn(yo&l5>0vE28cDr(&INEQClv){iiIkvAhJ{o)J}W2L5gAaz<8_ zuIISU4Q-sMDr2OPBpS{}iGJbkP_w^(G8YL{M+u`4%aev1P^=`ZfXA%h4wO;(px}i{ zD1#p}E4T~tBr7=CNMl8s(Yt`ihaTMl_GEgOO67>>@hcNuR~^P_s-Ndk4f@=^A+Op5l4rh1q@)}Pp+~LVt=m{@ zLZC03rA%clg;3mY3+f1cv!;0uqApx_*pZrPs^0dr8&J0L%J7peInjNklgjg&)#TYf zGbF*&w6HFy>MykJE`hcOoEl-gpeO^gOt3%BP$)Edz?NlbU+^|Hkl(1~R4nDK_L=PlN*lp7?!G);#Ciu=mN(>HM^K>T6@ zT{1v>r&G>tIojN$7A`6$xAAuTXKfOkf)1fwrK}UVg+n>|xU5CO&yOcd|#qgGs)xW<0y4 zh(7Lm-1dYtS=KaaO(`F9w=XUY5UbChmzd|WP0Le2$GM2W%eZWT3L)c`TuvsYh6!8@ zIjjc!k*|`#qs|tf&p?jqaUR$G8_VQgF*H!&Y6ozjWaS`BUjx%%k9TL@aXist#`d`% zPpD1N#jDRGEiekQu8*=E#CiJifY8bWi<>5R1(<64Tz%YhV%%g_-VC+1!gt_n+<^?} z%Ynnp(?uGqV}IXQ=!?^}z&Wa>p`}IqJ9y!jJZ$ZmbigRS;$Dk}Q2l;g@Dn)Jd0?2} ztVS!IxE0fO8 zdZrzUVChxmb3)YdpN8%$;-Ew?=tVVxD7&%rhQkX9rD;7Cl_9@j=YQw*e&ucNyw(h$ zDzXZ--n8D?WOv_p>}6-~_2vsm=w@zitF!$I2apLynEVqWfmbSmMSYGZ4kwlsQ3Qz} z@~cZjhO(q2LtkLI7FE_0qW>W&}&~kCPevGT!K72CJDBH_g~`i4Y89_p!sCaUiiE;Ci?`~E8Hb!E)18G)BEn+{}xXY4>qzZ9QA9ir99BJN2jF4w7MujX4PNv+m zh#kzwi?|=<8;JaEeOpEP8=I~mHB6#Lnu(V&jb0?Yv2sZ4usTE&EotJdSlBIyTQk#L zxDBw{#rfNd8hT~XINJmi6<8G3YN5eR7uD;JHba)vOn(=<<14jfXoYj4GlRVLmizGav=Qt(>r~SzG#FI)$56BrN*BAS5@F`#{OO zPk*IOxN@Ub<3BqB;Nv*I^2h+>jecEhEjrSH8`QKE$&RgV_vT5{_pQ*{$j`_nsb9N* z;j+=_wT&R^@;q2U>czQ$#O(jn;(rfG;H5Q)aOA{^cF?WdUIUD8myNmtR6C=lcU~tF zRtIn$S9$AwkYdrhzIFeJSAI6!%XJphFYoV&d+#GSO$9Hx#cP0kXu-t5;mSK4?YaLu zgpWbsVBzT5dn1B0rG+5t6|NFvOXon%VkQR55&h8j{)5|F1NC$pAq3+9(gzK8nujWi z3sQs0~kuyKfzOFBI_uDoYpWCSISCZ?`bZHYNxMeI< zUWm>Z!M{h8THwQxaAE}^l{Q71`_{^S=utRKXizaQLLQ*8K>-fn0Y+02CnAt72bM?m za3l;>1Fix>syrBrRexnj)u#12ZqQ_7>%QZqI43Ix1#y2a9p=pFr71I#Jvj6%V4XE= z28kk892@vDB9l2pCKW|2EB#F!3&5t%mK;8nphNMCZ!9eJ%E~F>uKo zGJJDj#Fl7J5S=G15uZphHm)txW=oc4nTdFriN?=Y<4^EkN5>1)eBVZ2Tz>oIH*ek?*?CL zLr$6LI9$8`G%ewODPVS4H?{JwX+jRn5-tpyaD-OWP(A87k$s+Hr)uP$ zJYon(gb*wX%7M6Fa`2ql@iaJY2DV=S449Y!QPN)mt_X=RIw^iUB|e;+7OWF#Eqcff zo01zPwUE>!$p)V+e2@eJ28=KuI+D;aZP8uFj)#&RKQS88n{C7#<$os79-u5ETulLD zSOx_df1|7hpw8j8D`F*AByCqD%1)@!i?8OJ6mI1?D1~axXP6Ib)tQXu)iI^KMVty>mvWQbVGEu zufY$2nj%0Qh!M)5CS)(qysgI)vLW^`6U= zcSxi~MX)$h)EPqJn?~bvk3OtVAI#ckz~GpI{^OiMU7H4QNQ&ec5kZ>6MgdK|C_{QVb{26QlH|<* zia^DweUMXzj({@;A>~n!gkb4jQ19Rh+&eCj&I>QJ{yx6TWaIQfQ19ysUgw6YrRI1> z>(T)g8>vZ!cIXh;8xw9#A8cL-69O}<|AQ@{h6La6k0f6Suv6@JJB=rwAbb5;a@FqG zhqR_2?PaamH}4SS{zwmdWbe2WO-a2t(uMfif6{%wXxgrHkzB)m*#9}=rIOW=>oVe+ zPmBR{M)Q!Gey}**(TMB)0i957xyO^SCVx!UXH33rR^*L+LY@yb`NN+- zBQO%^ur=raStJ_9oc+uW^kBMR(h6c2Sa&ij0ABGlsn5z-37Ku z4VLS1B1`iZGfL=ro^&%ToFc;tXF}?DjuwDp@Wr=9Z%XSjsCK6s-J$D|#jEw^gpR9u z;1)*EGS_dP0hk-}@Uv^xCkoloJmi0sgUNSrT4o<8!d0YJ17>z*?<$# z-=*l@0>2CF^}gO(pXJw1?&7w`b)e_(n;nYVzi6Ux;`B%eo}8p@&zoo0H@@+_M|Q2d z$*&z|wLQDhg?EtcPavK^xSQArQh9Up4iLo!yoRoIsfEBXr|_LI&b_`~;-`$Cu-mn$;ym(VWnx?~_;S$7 zDG{EM3(s}Wh%gkB;Qoq*)%x?^BnN{@9y8_FhSvI()I$9%SiU_bMQBz@Np%iCTJF_W zFLjF2U>wpXw+{i86fVUMkC{}@6GzGtK$EHLlejM(XQRC+4AD2B7bRg*U(+f1-3df* z3Ofd%|K?L^l?34N=2r!(_^zr5V5S^wE0i+@^TI?CcS7JmxWZ#fYburhm%s#sxG&ih zsv?4Nj(or}9<+&ysNltgDKF*vN+wN;HfK~0^v7VH$(=%uQ3wR2SgF8O6eZTDObWWd zfNFgLW}ufs2|LJuNbn7#GU@dL7G0qLJ8}lVmJu#zfNYFXc*s(ZdQ6!&L`I&S zQvhSAf;N}KxdGE%ETvr_Pv5Fl={Y*2AvN)grX}qXoIhmK@E_SaPgW9<=H2blkS~&J z*`NWRY|2;r-f=ki=qg= zb$1Px#G-Exu0&gi+SXxL#xzwi2Pj@p(bP7qXhB_4I|ujUzbyn?s>=_|*4%Cs#YmG8 zlXg)nR<*BL!Y<5irzJBJMl+cm4Hhq5J(I2gmSfFtVpW6jdqBFb3N3-Rg-!;r2#Pt$ znyG-$=J60El~&U%qA*laiIy^7(mLpB3e3yJ$s$wad55N6QY&JGfzl=kD)NCyr5LiQ z9;GW(D*u2?;0T>3cTgqfBcqY@j~E2wAImag%PPky8?2bXd_sDWP7#b2_Bi zSFoj?LGro)^U%T^DKQo;Xhg!AO4BeXs%QhFtsx`83n`M7{fhChAXsWuw#*r{s98s+ zYcFXIh$@0?( zw*Zw56&n-M>T&)Lhh-0Ihz9EhE2$dVq~ctp6qO4`%W5fS+9LnH%rUK=xR|&EezFOv ze@PV42=pwRpHE-{hXWATKgK;tuu>T88f3||jC+<%R)h@mZtB>|np$kE5ER_pNe9

PF^2wRB~?%r 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

9pY^7uER7)*%%t_S< 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⋘3k!Gtn` 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 KBsvp&gVaGXwckhC*t%Iab#b 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 z�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�!)=s_oP&!L_` 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 z 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 + - - - - - - - + + + + + + + + + + + + + + + + + \ No newline at end of file From 3f00913f72193919d217efd4facb58fd552969e4 Mon Sep 17 00:00:00 2001 From: Pavel Pochobut Date: Wed, 29 Apr 2015 15:44:55 +0300 Subject: [PATCH 08/40] fix for #193 - "The extension ID Default-PaaSDiagnostics-Staging-Ext-0 is already in use for this deployment" for Set-AzureServiceDiagnosticsExtension after VIP Swap. --- ...reServiceDiagnosticsExtensionCmdletInfo.cs | 1 + .../FunctionalTests/ScenarioTest.cs | 80 ++++++++++++++++++- .../Extensions/Common/ExtensionManager.cs | 16 +++- .../SetAzureServiceDiagnosticsExtension.cs | 7 +- 4 files changed, 97 insertions(+), 7 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/SetAzureServiceDiagnosticsExtensionCmdletInfo.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/SetAzureServiceDiagnosticsExtensionCmdletInfo.cs index dfe5839f3673..8f97e7a887c6 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/SetAzureServiceDiagnosticsExtensionCmdletInfo.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/SetAzureServiceDiagnosticsExtensionCmdletInfo.cs @@ -26,6 +26,7 @@ public SetAzureServiceDiagnosticsExtensionCmdletInfo(string service, AzureStorag this.cmdletName = Utilities.SetAzureServiceDiagnosticsExtensionCmdletName; this.cmdletParams.Add(new CmdletParam("ServiceName", service)); this.cmdletParams.Add(new CmdletParam("StorageContext", storageContext)); + this.cmdletParams.Add(new CmdletParam("Slot", slot)); if (roles != null) { this.cmdletParams.Add(new CmdletParam("Role", roles)); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ScenarioTest.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ScenarioTest.cs index ee21cbc44092..bf35d219ead2 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ScenarioTest.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ScenarioTest.cs @@ -1012,7 +1012,6 @@ public void AzureServiceDiagnosticsExtensionConfigScenarioTest() [Ignore] public void AzureServiceDiagnosticsExtensionTest() { - StartTest(MethodBase.GetCurrentMethod().Name, testStartTime); // Choose the package and config files from local machine @@ -1064,6 +1063,77 @@ public void AzureServiceDiagnosticsExtensionTest() pass &= Utilities.CheckRemove(vmPowershellCmdlets.GetAzureDeployment, serviceName, DeploymentSlotType.Production); } + [TestMethod(), TestCategory(Category.Scenario), TestProperty("Feature", "PAAS"), Priority(1), Owner("hylee"), Description("Test the cmdlet ((Get,Set,Remove)-AzureServiceRemoteDesktopExtension)")] + [DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV", "|DataDirectory|\\Resources\\nodiagpackage.csv", "nodiagpackage#csv", DataAccessMethod.Sequential)] + [Ignore] + public void VipSwapWithDiagnosticsExtensionTest() + { + StartTest(MethodBase.GetCurrentMethod().Name, testStartTime); + + // Choose the package and config files from local machine + string packageName = Convert.ToString(TestContext.DataRow["packageName"]); + string configName = Convert.ToString(TestContext.DataRow["configName"]); + var packagePath = new FileInfo(Directory.GetCurrentDirectory() + "\\" + packageName); + var configPath = new FileInfo(Directory.GetCurrentDirectory() + "\\" + configName); + + Assert.IsTrue(File.Exists(packagePath.FullName), "Package file not exist={0}", packagePath); + Assert.IsTrue(File.Exists(configPath.FullName), "Config file not exist={0}", configPath); + + string deploymentName = "deployment1"; + string deploymentLabel = "label1"; + DeploymentInfoContext result; + + string storage = defaultAzureSubscription.CurrentStorageAccountName; + string daConfig = @"da.xml"; + + string storageKey = vmPowershellCmdlets.GetAzureStorageAccountKey(storage).Primary; + StorageCredentials creds = new StorageCredentials(storage, storageKey); + CloudStorageAccount csa = new WindowsAzure.Storage.CloudStorageAccount(creds, true); + var storageContext = new AzureStorageContext(csa); + + serviceName = Utilities.GetUniqueShortName(serviceNamePrefix); + vmPowershellCmdlets.NewAzureService(serviceName, serviceName, locationName); + Console.WriteLine("service, {0}, is created.", serviceName); + + // deploy staging + vmPowershellCmdlets.NewAzureDeployment(serviceName, packagePath.FullName, configPath.FullName, DeploymentSlotType.Staging, deploymentLabel, deploymentName, false, false); + result = vmPowershellCmdlets.GetAzureDeployment(serviceName, DeploymentSlotType.Staging); + pass = Utilities.PrintAndCompareDeployment(result, serviceName, deploymentName, deploymentLabel, DeploymentSlotType.Staging, null, 2); + Console.WriteLine("successfully deployed the package"); + + vmPowershellCmdlets.SetAzureServiceDiagnosticsExtension(serviceName, storageContext, daConfig, null, slot: DeploymentSlotType.Staging); + DiagnosticExtensionContext resultContext = vmPowershellCmdlets.GetAzureServiceDiagnosticsExtension(serviceName, slot: DeploymentSlotType.Staging)[0]; + VerifyDiagExtContext(resultContext, "AllRoles", "Default-PaaSDiagnostics-Staging-Ext-0", storage, daConfig); + + // swap staging -> production + // production will be retain diagnosting config from staging, named Default-PaaSDiagnostics-Staging-Ext-0 + vmPowershellCmdlets.MoveAzureDeployment(serviceName); + + // deploy a new staging + deploymentName = "deployment2"; + deploymentLabel = "label2"; + + vmPowershellCmdlets.NewAzureDeployment(serviceName, packagePath.FullName, configPath.FullName, DeploymentSlotType.Staging, deploymentLabel, deploymentName, false, false); + result = vmPowershellCmdlets.GetAzureDeployment(serviceName, DeploymentSlotType.Staging); + pass = Utilities.PrintAndCompareDeployment(result, serviceName, deploymentName, deploymentLabel, DeploymentSlotType.Staging, null, 2); + Console.WriteLine("successfully deployed the package"); + + // should detect that Default-PaaSDiagnostics-Staging-Ext-0 is in use + vmPowershellCmdlets.SetAzureServiceDiagnosticsExtension(serviceName, storageContext, daConfig, null, slot: DeploymentSlotType.Staging); + DiagnosticExtensionContext resultContext2 = vmPowershellCmdlets.GetAzureServiceDiagnosticsExtension(serviceName, slot: DeploymentSlotType.Staging)[0]; + VerifyDiagExtContext(resultContext2, "AllRoles", "Default-PaaSDiagnostics-Staging-Ext-1", storage, daConfig); + + // execute again to make sure max number of extensions will handled correctly (1 for production and 1 for staging, 1 unused) + // should not fail due to ExtensionIdLiveCycleCount limit + vmPowershellCmdlets.SetAzureServiceDiagnosticsExtension(serviceName, storageContext, daConfig, null, slot: DeploymentSlotType.Staging); + DiagnosticExtensionContext resultContext3 = vmPowershellCmdlets.GetAzureServiceDiagnosticsExtension(serviceName, slot: DeploymentSlotType.Staging)[0]; + + // azure splits config from All Roles to specific role in that case, so role name should not be validated + VerifyDiagExtContext(resultContext3, null, "Default-PaaSDiagnostics-Staging-Ext-2", storage, daConfig); + + vmPowershellCmdlets.RemoveAzureService(serviceName, true); + } + #endregion @@ -1696,10 +1766,14 @@ private void VerifyDiagExtContext(DiagnosticExtensionContext resultContext, stri { Utilities.PrintContext(resultContext); - Assert.AreEqual(role, resultContext.Role.RoleType.ToString(), "role is not same"); + if (role != null) + { + Assert.AreEqual(role, resultContext.Role.RoleType.ToString(), "role is not same"); + } + Assert.AreEqual(Utilities.PaaSDiagnosticsExtensionName, resultContext.Extension, "extension is not Diagnostics"); + Assert.AreEqual(extID, resultContext.Id, "extension id is not same"); - //Assert.AreEqual(storage, resultContext.StorageAccountName, "storage account name is not same"); XmlDocument doc = new XmlDocument(); doc.Load("da.xml"); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs index c6dc159c042f..2a4d98eff417 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs @@ -21,12 +21,14 @@ using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.WindowsAzure.Management.Compute; using Microsoft.WindowsAzure.Management.Compute.Models; +using DeploymentSlotType = Microsoft.WindowsAzure.Commands.ServiceManagement.Model.DeploymentSlotType; +using System.Diagnostics; namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions { public class ExtensionManager { - public const int ExtensionIdLiveCycleCount = 2; + public const int ExtensionIdLiveCycleCount = 3; private const string ExtensionIdTemplate = "{0}-{1}-{2}-Ext-{3}"; private const string DefaultAllRolesNameStr = "Default"; private const string ExtensionCertificateSubject = "DC=Microsoft Azure Service Management for Extensions"; @@ -143,16 +145,24 @@ private void GetThumbprintAndAlgorithm(IList new ExtensionRole(r)) : Enumerable.Repeat(new ExtensionRole(), 1)) }; - var extConfig = ExtensionManager.InstallExtension(context, Slot, Deployment.ExtensionConfiguration); + + var secondSlotDeployment = GetDeployment(this.Slot == DeploymentSlotType.Production ? DeploymentSlotType.Staging : DeploymentSlotType.Production); + Microsoft.WindowsAzure.Management.Compute.Models.ExtensionConfiguration secondSlotExtensionConfiguration = + secondSlotDeployment != null ? secondSlotDeployment.ExtensionConfiguration : null; + + var extConfig = ExtensionManager.InstallExtension(context, Slot, Deployment.ExtensionConfiguration, secondSlotExtensionConfiguration); ChangeDeployment(extConfig); } From 69d3f374fb44353b877fb79a8edca579b34b6418 Mon Sep 17 00:00:00 2001 From: emmazhu Date: Tue, 5 May 2015 15:18:18 +0800 Subject: [PATCH 09/40] Move resource storage account management cmdlets to a new project. --- src/AzurePowershell.sln | 10 +- .../Commands.Compute/Commands.Compute.csproj | 11 +- ...rosoft.Azure.Commands.Compute.dll-Help.xml | 1860 ++++------------- .../AzureResourceManager.psd1 | 6 +- .../Commands.Management.Storage.csproj | 160 ++ .../MSSharedLibKey.snk | Bin 0 -> 160 bytes ....Commands.Management.Storage.dll-Help.psd1 | 90 + ...e.Commands.Management.Storage.dll-Help.xml | 1126 ++++++++++ ....Commands.Management.Storage.format.ps1xml | 5 + .../Models/PSStorageAccount.cs | 2 +- .../Properties/AssemblyInfo.cs | 36 + .../StorageAccount/GetAzureStorageAccount.cs | 2 +- .../GetAzureStorageAccountKey.cs | 2 +- .../StorageAccount/NewAzureStorageAccount.cs | 2 +- .../NewAzureStorageAccountKey.cs | 2 +- .../RemoveAzureStorageAccount.cs | 2 +- .../StorageAccount/SetAzureStorageAccount.cs | 2 +- .../StorageAccountBaseCmdlet.cs | 4 +- .../StorageAccount/StorageManagementClient.cs | 2 +- .../packages.config | 14 + 20 files changed, 1822 insertions(+), 1516 deletions(-) create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage/Commands.Management.Storage.csproj create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage/MSSharedLibKey.snk create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.psd1 create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.xml create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.format.ps1xml rename src/ResourceManager/{Compute/Commands.Compute => Storage/Commands.Management.Storage}/Models/PSStorageAccount.cs (97%) create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs rename src/ResourceManager/{Compute/Commands.Compute => Storage/Commands.Management.Storage}/StorageAccount/GetAzureStorageAccount.cs (97%) rename src/ResourceManager/{Compute/Commands.Compute => Storage/Commands.Management.Storage}/StorageAccount/GetAzureStorageAccountKey.cs (97%) rename src/ResourceManager/{Compute/Commands.Compute => Storage/Commands.Management.Storage}/StorageAccount/NewAzureStorageAccount.cs (98%) rename src/ResourceManager/{Compute/Commands.Compute => Storage/Commands.Management.Storage}/StorageAccount/NewAzureStorageAccountKey.cs (98%) rename src/ResourceManager/{Compute/Commands.Compute => Storage/Commands.Management.Storage}/StorageAccount/RemoveAzureStorageAccount.cs (97%) rename src/ResourceManager/{Compute/Commands.Compute => Storage/Commands.Management.Storage}/StorageAccount/SetAzureStorageAccount.cs (98%) rename src/ResourceManager/{Compute/Commands.Compute => Storage/Commands.Management.Storage}/StorageAccount/StorageAccountBaseCmdlet.cs (97%) rename src/ResourceManager/{Compute/Commands.Compute => Storage/Commands.Management.Storage}/StorageAccount/StorageManagementClient.cs (96%) create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage/packages.config diff --git a/src/AzurePowershell.sln b/src/AzurePowershell.sln index c162b0682a80..aa0ec306dbdd 100644 --- a/src/AzurePowershell.sln +++ b/src/AzurePowershell.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.31101.0 +VisualStudioVersion = 12.0.21005.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8531411A-0137-4E27-9C5E-49E07C245048}" ProjectSection(SolutionItems) = preProject @@ -210,6 +210,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement", "R EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement.Test", "ResourceManager\ApiManagement\Commands.ApiManagement.Test\Commands.ApiManagement.Test.csproj", "{BEC9ECE9-A3D6-4B24-A682-1FA890647D9D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Management.Storage", "ResourceManager\Storage\Commands.Management.Storage\Commands.Management.Storage.csproj", "{A50AB133-5C04-4A17-9054-F8343683EC23}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -512,12 +514,15 @@ Global {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D}.Debug|Any CPU.Build.0 = Debug|Any CPU {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D}.Release|Any CPU.ActiveCfg = Release|Any CPU {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D}.Release|Any CPU.Build.0 = Release|Any CPU + {A50AB133-5C04-4A17-9054-F8343683EC23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A50AB133-5C04-4A17-9054-F8343683EC23}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A50AB133-5C04-4A17-9054-F8343683EC23}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A50AB133-5C04-4A17-9054-F8343683EC23}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {B7FD03F6-98BC-4F54-9A14-0455E579FCD4} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {37455286-D8A7-4E0C-8B4D-C517D20C641A} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {D6F470A6-7395-4B8B-9D29-44DF0EC8F624} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {A3965B66-5A3E-4B8C-9574-28E5958D4828} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} @@ -528,6 +533,7 @@ Global {4BC0E3D3-6EDD-43AA-8F15-DCFED8ACC93D} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {9D5A40CA-5594-4F5C-8230-7ADF7CC0558E} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {3B48A77B-5956-4A62-9081-92BA04B02B27} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {B7FD03F6-98BC-4F54-9A14-0455E579FCD4} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {374D4000-DEDE-4995-9B63-E3B9FE0C4D29} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {127D0D51-FDEA-4E1A-8CD8-34DEB5C2F7F6} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 1e1cf1482139..8ec3f72b26e4 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -20,7 +20,7 @@ true full false - ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\Compute + ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\Compute\ DEBUG;TRACE prompt 4 @@ -164,7 +164,6 @@ - @@ -188,15 +187,7 @@ - - - - - - - - diff --git a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml index 1c315ee18466..30b7f8f0cbe0 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml +++ b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml @@ -1339,330 +1339,6 @@ $vm = Add-AzureVMSshPublicKey -VM $vm -KeyData $sshPublicKey -Path $sshPath; - - - Get-AzureStorageAccount - - Get the properties of a Storage Account - - - - - Get - AzureStorageAccount - - - - This cmdlet allows you to get the properties of a specified Storage Account or all Storage Accounts within a Resource Group or the subscription. - - - - Get-AzureStorageAccount - - ResourceGroupName - - Name of the Resource Group - - String - - - Name - - Name of the Storage Account - - String - - - Profile - - - - AzureProfile - - - - - - ResourceGroupName - - Name of the Resource Group - - String - - String - - - - - - Name - - Name of the Storage Account - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Get a specified storage account -------------------------- - - PS C:\> - - PS C:\> #Get one storage account - Get-AzureStorageAccount -ResourceGroupName "RG1" -AccountName "myStorageAccount" - - - - - - - - - - - - - - - - -------------------------- Get all Storage Accounts in a Resource Group -------------------------- - - PS C:\> - - PS C:\> # Get all Storage Accounts in a Resource Group - Get-AzureStorageAccount -ResourceGroupName "RG1" - - - - - - - - - - - - - - - - -------------------------- Get all Storage Accounts in the subscription -------------------------- - - PS C:\> - - PS C:\> # Get all Storage Accounts in the subscription - Get-AzureStorageAccount - - - - - - - - - - - - - - - - - - - - - - Get-AzureStorageAccountKey - - Get the access keys for an Azure storage account - - - - - Get - AzureStorageAccountKey - - - - This cmdlet allows you to get the access keys for an Azure storage account. - - - - Get-AzureStorageAccountKey - - ResourceGroupName - - Name of the Resource Group - - String - - - Name - - Name of the Storage Account - - String - - - Profile - - - - AzureProfile - - - - - - ResourceGroupName - - Name of the Resource Group - - String - - String - - - - - - Name - - Name of the Storage Account - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Get the access keys for a Storage Account -------------------------- - - PS C:\> - - #Get keys - Get-AzureStorageAccountKey -ResourceGroupName "RG1" -AccountName "myStorageAccount" - - - - - - - - - - - - - - - - - - - Get-AzureVM @@ -2976,168 +2652,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PublisherName - Name of the extension publisher - - String - - - Profile - - - - AzureProfile - - - - - - Location - - Location of the Extension - - String - - String - - - - - - PublisherName - - Name of the extension publisher - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - Get-AzureVMExtensionImageType -Location eastus -PublisherName Symantec - - - - - - - - - - - - - - - - - - - - - - Get-AzureVMImage - - Get all the versions of a VMImage - - - - - Get - AzureVMImage - - - - Get all the versions of a VMImage - - - - Get-AzureVMImage - - Location - - Location of the VMImage - - String - - - PublisherName - - Publisher of the VMImage - - String - - - Offer - - Type of VMImage offer - - String - - - Skus - - VMImage SKU - - String - - - FilterExpression - - + Name of the extension publisher String @@ -3154,7 +2669,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna Location - Location of the VMImage + Location of the Extension String @@ -3166,43 +2681,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PublisherName - Publisher of the VMImage - - String - - String - - - - - - Offer - - Type of VMImage offer - - String - - String - - - - - - Skus - - VMImage SKU - - String - - String - - - - - - FilterExpression - - + Name of the extension publisher String @@ -3223,18 +2702,6 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - - Version - - - - string - - string - - - - @@ -3276,7 +2743,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PS C:\> - Get-AzureVMImage -Location eastus -PublisherName Canonical -Offer UbuntuServer -Skus 15.04-DAILY + Get-AzureVMExtensionImageType -Location eastus -PublisherName Symantec @@ -3298,23 +2765,23 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - Get-AzureVMImageDetail + Get-AzureVMImage - Returns information about a VMImage + Get all the versions of a VMImage Get - AzureVMImageDetail + AzureVMImage - Returns information about a VMImage + Get all the versions of a VMImage - Get-AzureVMImageDetail + Get-AzureVMImage Location @@ -3325,7 +2792,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PublisherName - Name of the VMImage publisher + Publisher of the VMImage String @@ -3339,14 +2806,14 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna Skus - Type of VMImage SKU + VMImage SKU String - - Version + + FilterExpression - Version of VMImage + String @@ -3375,7 +2842,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PublisherName - Name of the VMImage publisher + Publisher of the VMImage String @@ -3399,7 +2866,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna Skus - Type of VMImage SKU + VMImage SKU String @@ -3408,10 +2875,10 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - - Version + + FilterExpression - Version of VMImage + String @@ -3432,6 +2899,18 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna + + Version + + + + string + + string + + + + @@ -3473,7 +2952,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PS C:\> - Get-AzureVMImageDetail -Location eastus -PublisherName Canonical -Offer UbuntuServer -Skus 15.04-DAILY -Version 15.04.20150422 + Get-AzureVMImage -Location eastus -PublisherName Canonical -Offer UbuntuServer -Skus 15.04-DAILY @@ -3495,34 +2974,55 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - Get-AzureVMImageOffer + Get-AzureVMImageDetail - Returns the VMImage Offer types + Returns information about a VMImage Get - AzureVMImageOffer + AzureVMImageDetail - Returns the VMImage Offer types + Returns information about a VMImage - Get-AzureVMImageOffer + Get-AzureVMImageDetail Location - Location for the images + Location of the VMImage String PublisherName - Name of the Publisher + Name of the VMImage publisher + + String + + + Offer + + Type of VMImage offer + + String + + + Skus + + Type of VMImage SKU + + String + + + Version + + Version of VMImage String @@ -3539,7 +3039,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna Location - Location for the images + Location of the VMImage String @@ -3551,7 +3051,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PublisherName - Name of the Publisher + Name of the VMImage publisher String @@ -3560,119 +3060,34 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - - Profile + + Offer - + Type of VMImage offer - AzureProfile + String - AzureProfile + String - - - - - - - - + + Skus - - + Type of VMImage SKU - - - - + String - - - + String + - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - Get-AzureVMImageOffer -Location eastus -PublisherName Canonical - - - - - - - - - - - - - - - - - - - - - - Get-AzureVMImagePublisher - - Return the VMImage publishers - - - - - Get - AzureVMImagePublisher - - - - Return the VMImage publishers - - - - Get-AzureVMImagePublisher - - Location - - Location of the VMImage - - String - - - Profile - - - - AzureProfile - - - - + + - Location + Version - Location of the VMImage + Version of VMImage String @@ -3734,7 +3149,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PS C:\> - Get-AzureVMImagePublisher -Location eastus + Get-AzureVMImageDetail -Location eastus -PublisherName Canonical -Offer UbuntuServer -Skus 15.04-DAILY -Version 15.04.20150422 @@ -3756,27 +3171,27 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - Get-AzureVMImageSku + Get-AzureVMImageOffer - Returns VMImage SKUs + Returns the VMImage Offer types Get - AzureVMImageSku + AzureVMImageOffer - Returns VMImage SKUs + Returns the VMImage Offer types - Get-AzureVMImageSku + Get-AzureVMImageOffer Location - Location of the VMImage + Location for the images String @@ -3787,13 +3202,6 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna String - - Offer - - Type of VMImage offer - - String - Profile @@ -3807,7 +3215,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna Location - Location of the VMImage + Location for the images String @@ -3828,18 +3236,6 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - - Offer - - Type of VMImage offer - - String - - String - - - - Profile @@ -3893,7 +3289,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PS C:\> - Get-AzureVMImageSku -Location eastus -PublisherName Canonical -Offer UbuntuServer + Get-AzureVMImageOffer -Location eastus -PublisherName Canonical @@ -3915,75 +3311,27 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - Get-AzureVMSize + Get-AzureVMImagePublisher - Get the available VM sizes by location, Availability Set or resize an existing VM to + Return the VMImage publishers Get - AzureVMSize + AzureVMImagePublisher - Get the available VM sizes by location, Availability Set or resize an existing VM to + Return the VMImage publishers - Get-AzureVMSize - + Get-AzureVMImagePublisher + Location - Location of the VM - - String - - - Profile - - - - AzureProfile - - - - Get-AzureVMSize - - ResourceGroupName - - Resource Group of the VM - - String - - - AvailabilitySetName - - Name of the Availability Set - - String - - - Profile - - - - AzureProfile - - - - Get-AzureVMSize - - ResourceGroupName - - Resource Group of the VM - - String - - - VMName - - Name of the VM + Location of the VMImage String @@ -3997,10 +3345,10 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - + Location - Location of the VM + Location of the VMImage String @@ -4021,42 +3369,6 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - - ResourceGroupName - - Resource Group of the VM - - String - - String - - - - - - AvailabilitySetName - - Name of the Availability Set - - String - - String - - - - - - VMName - - Name of the VM - - String - - String - - - - @@ -4098,50 +3410,10 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PS C:\> - Get-AzureVMSize -Location westeurope - - Get the available VM sizes in a location - - - - - - - - - - - - - - -------------------------- Example 2 -------------------------- - - PS C:\> - - Get-AzureVMSize -ResourceGroupName rg3-AvailabilitySetName av3 + Get-AzureVMImagePublisher -Location eastus - Get available VM sizes you can deploy in an existing availability set - - - - - - - - - - - - -------------------------- Example 3 -------------------------- - - PS C:\> - - Get-AzureVMSize -ResourceGroupName rg3 -VMName vm3 - - Available VM sizes that an existing VM can be resized to - @@ -4160,27 +3432,41 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - Get-AzureVMUsage + Get-AzureVMImageSku - Get the VM core count usage in a location + Returns VMImage SKUs Get - AzureVMUsage + AzureVMImageSku - Get the VM core count usage in a location + Returns VMImage SKUs - Get-AzureVMUsage - + Get-AzureVMImageSku + Location - Location to get VM core count usage in + Location of the VMImage + + String + + + PublisherName + + Name of the Publisher + + String + + + Offer + + Type of VMImage offer String @@ -4194,10 +3480,34 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - + Location - Location to get VM core count usage in + Location of the VMImage + + String + + String + + + + + + PublisherName + + Name of the Publisher + + String + + String + + + + + + Offer + + Type of VMImage offer String @@ -4259,7 +3569,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PS C:\> - Get-AzureVMUsage -Location eastus + Get-AzureVMImageSku -Location eastus -PublisherName Canonical -Offer UbuntuServer @@ -4281,57 +3591,77 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - New-AzureAvailabilitySet + Get-AzureVMSize - Create an Availability Set + Get the available VM sizes by location, Availability Set or resize an existing VM to - New - AzureAvailabilitySet + Get + AzureVMSize - This cmdlet allows you to create an Availability Set + Get the available VM sizes by location, Availability Set or resize an existing VM to - New-AzureAvailabilitySet + Get-AzureVMSize + + Location + + Location of the VM + + String + + + Profile + + + + AzureProfile + + + + Get-AzureVMSize ResourceGroupName - Name of Resource Group + Resource Group of the VM String - Name + AvailabilitySetName - Name of Availability Set + Name of the Availability Set String - - Location + + Profile - Location of the Availability Set + - String + AzureProfile - - PlatformUpdateDomainCount + + + Get-AzureVMSize + + ResourceGroupName - + Resource Group of the VM - Nullable`1[Int32] + String - - PlatformFaultDomainCount + + VMName - + Name of the VM - Nullable`1[Int32] + String Profile @@ -4344,9 +3674,9 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - ResourceGroupName + Location - Name of Resource Group + Location of the VM String @@ -4355,22 +3685,22 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - - Name + + Profile - Name of Availability Set + - String + AzureProfile - String + AzureProfile - - Location + + ResourceGroupName - Location of the Availability Set + Resource Group of the VM String @@ -4379,38 +3709,26 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - - PlatformUpdateDomainCount - - - - Nullable`1[Int32] - - Nullable`1[Int32] - - - - - - PlatformFaultDomainCount + + AvailabilitySetName - + Name of the Availability Set - Nullable`1[Int32] + String - Nullable`1[Int32] + String - - Profile + + VMName - + Name of the VM - AzureProfile + String - AzureProfile + String @@ -4452,14 +3770,54 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - -------------------------- Create an Availability Set -------------------------- + -------------------------- Example 1 -------------------------- PS C:\> - New-AzureAvailabilitySet -ResourceGroupName "RG1" -Name "myASet" -Location "West US" + Get-AzureVMSize -Location westeurope + + Get the available VM sizes in a location + + + + + + + + + + + + + + -------------------------- Example 2 -------------------------- + + PS C:\> + + Get-AzureVMSize -ResourceGroupName rg3-AvailabilitySetName av3 + Get available VM sizes you can deploy in an existing availability set + + + + + + + + + + + + -------------------------- Example 3 -------------------------- + + PS C:\> + + Get-AzureVMSize -ResourceGroupName rg3 -VMName vm3 + + Available VM sizes that an existing VM can be resized to + @@ -4478,52 +3836,27 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - New-AzureStorageAccount + Get-AzureVMUsage - Allows you to create a new Storage Account + Get the VM core count usage in a location - New - AzureStorageAccount + Get + AzureVMUsage - This cmdlet allows you to create a new Storage Account. + Get the VM core count usage in a location - New-AzureStorageAccount + Get-AzureVMUsage - ResourceGroupName - - Name of the Resource Group - - String - - - Name - - Name of the Storage Account - - String - - - Type - - Type of Storage Account. Valid values are -• Standard_LRS (Locally-redundant storage) -• Standard_ZRS (Zone-redundant storage) -• Standard_GRS (Geo-redundant storage) -• Standard_RAGRS (Read access geo-redundant storage) - - String - - Location - Location of the Storage Account + Location to get VM core count usage in String @@ -4538,49 +3871,9 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - ResourceGroupName - - Name of the Resource Group - - String - - String - - - - - - Name - - Name of the Storage Account - - String - - String - - - - - - Type - - Type of Storage Account. Valid values are -• Standard_LRS (Locally-redundant storage) -• Standard_ZRS (Zone-redundant storage) -• Standard_GRS (Geo-redundant storage) -• Standard_RAGRS (Read access geo-redundant storage) - - String - - String - - - - - Location - Location of the Storage Account + Location to get VM core count usage in String @@ -4642,7 +3935,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna PS C:\> - New-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -Location "US West" -AccountType "Standard_GRS" + Get-AzureVMUsage -Location eastus @@ -4664,46 +3957,58 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - New-AzureStorageAccountKey + New-AzureAvailabilitySet - Regenerates a storage key for an Azure storage account. + Create an Availability Set New - AzureStorageAccountKey + AzureAvailabilitySet - Regenerates a storage key for an Azure storage account. + This cmdlet allows you to create an Availability Set - New-AzureStorageAccountKey + New-AzureAvailabilitySet ResourceGroupName - Name of the Resource Group the storage account is in + Name of Resource Group String Name - Name of the Storage Account + Name of Availability Set String - KeyName + Location - Specifies which key to regenerate. Supported value set: -- “key1” -- “key2” + Location of the Availability Set String + + PlatformUpdateDomainCount + + + + Nullable`1[Int32] + + + PlatformFaultDomainCount + + + + Nullable`1[Int32] + Profile @@ -4717,7 +4022,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna ResourceGroupName - Name of the Resource Group the storage account is in + Name of Resource Group String @@ -4729,7 +4034,7 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna Name - Name of the Storage Account + Name of Availability Set String @@ -4739,11 +4044,9 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - KeyName + Location - Specifies which key to regenerate. Supported value set: -- “key1” -- “key2” + Location of the Availability Set String @@ -4752,6 +4055,30 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna + + PlatformUpdateDomainCount + + + + Nullable`1[Int32] + + Nullable`1[Int32] + + + + + + PlatformFaultDomainCount + + + + Nullable`1[Int32] + + Nullable`1[Int32] + + + + Profile @@ -4801,12 +4128,11 @@ $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmna - -------------------------- Example 1 -------------------------- + -------------------------- Create an Availability Set -------------------------- PS C:\> - #Regenerate a key -New-AzureStorageKey -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -keyName "key1" + New-AzureAvailabilitySet -ResourceGroupName "RG1" -Name "myASet" -Location "West US" @@ -5365,146 +4691,6 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - - - Remove-AzureStorageAccount - - Remove Storage Account from Azure - - - - - Remove - AzureStorageAccount - - - - Remove Storage Account from Azure - - - - Remove-AzureStorageAccount - - ResourceGroupName - - Name of the Resource Group - - String - - - Name - - Name of the VM - - String - - - Profile - - - - AzureProfile - - - - - - ResourceGroupName - - Name of the Resource Group - - String - - String - - - - - - Name - - Name of the VM - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Remove Storage Account -------------------------- - - PS C:\> - - PS C:\> Remove-AzureStorageAccount -ResourceGroupName "RG1" -AccountName "myStorageAccount" - - - - - - - - - - - - - - - - - - - Remove-AzureVM @@ -6347,143 +5533,23 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - - - VM - - The VM object - - PSVirtualMachine - - PSVirtualMachine - - - - - - Id - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Restart-AzureVM - - Restart a VM - - - - - Restart - AzureVM - - - - Restart a VM - - - - Restart-AzureVM - - ResourceGroupName - - Name of Resource Group - - String - - - Name - - Name of the VM - - String - - - Profile - - - - AzureProfile - - - - - - ResourceGroupName + + + VM - Name of Resource Group + The VM object - String + PSVirtualMachine - String + PSVirtualMachine - Name + Id - Name of the VM + String @@ -6540,26 +5606,6 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - - -------------------------- Example 1 -------------------------- - - PS C:\> - - PS C:\> Restart-AzureVM -ResourceGroupName "myRG" -Name "crpVM" - - - - - - - - - - - - - - @@ -6567,59 +5613,37 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - Save-AzureVMImage + Restart-AzureVM - Allows you to capture your VM as a VMImage + Restart a VM - Save - AzureVMImage + Restart + AzureVM - Allows you to capture your VM as a VMImage. Required step before this is to sysprep the VM and mark it generalized using the Set-AzureVM -Generalize cmdlet. - The output is a JSON template that can be used to deploy from your captured image. + Restart a VM - Save-AzureVMImage + Restart-AzureVM ResourceGroupName - Resource Group of the VM + Name of Resource Group String - VMName + Name Name of the VM String - - DestinationContainerName - - This is the name of the container inside which the vhds constituting the VMImage will reside. If they are spread across multiple storage accounts, one container with this name will be created in each storage account. - - String - - - VHDNamePrefix - - This is the prefix in the name of the blobs that will constitute the storage profile of the VMImage. For e.g. the OSDisk can be named vhdPrefix-osdisk - - String - - - Overwrite - - Indicates if any vhds with same Prefix inside the destination Container are encountered, should they be overwritten or not. - - SwitchParameter - Profile @@ -6633,7 +5657,7 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av ResourceGroupName - Resource Group of the VM + Name of Resource Group String @@ -6643,7 +5667,7 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - VMName + Name Name of the VM @@ -6654,42 +5678,6 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - - DestinationContainerName - - This is the name of the container inside which the vhds constituting the VMImage will reside. If they are spread across multiple storage accounts, one container with this name will be created in each storage account. - - String - - String - - - - - - VHDNamePrefix - - This is the prefix in the name of the blobs that will constitute the storage profile of the VMImage. For e.g. the OSDisk can be named vhdPrefix-osdisk - - String - - String - - - - - - Overwrite - - Indicates if any vhds with same Prefix inside the destination Container are encountered, should they be overwritten or not. - - SwitchParameter - - SwitchParameter - - - - Profile @@ -6743,9 +5731,9 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av PS C:\> - Save-AzureVMImage -ResourceGroupName "RG1" -VMName "VM1" -DestinationContainerName "VM1" -VHDNamePrefix "VM1" + PS C:\> Restart-AzureVM -ResourceGroupName "myRG" -Name "crpVM" - Captures the VMImage. The Output property returns a JSON template that can be used to deploy from the captured VMImage. + @@ -6765,118 +5753,58 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - Set-AzureStorageAccount + Save-AzureVMImage - Update the Storage Account properties + Allows you to capture your VM as a VMImage - Set - AzureStorageAccount + Save + AzureVMImage - This cmdlet allows you to update the Storage Account properties. + Allows you to capture your VM as a VMImage. Required step before this is to sysprep the VM and mark it generalized using the Set-AzureVM -Generalize cmdlet. + The output is a JSON template that can be used to deploy from your captured image. - Set-AzureStorageAccount - - ResourceGroupName - - Name of the Resource Group - - String - - - Name - - Name of the Storage Account - - String - - - Type - - Specifies the account type of the storage account. One of four options: - • Standard_LRS (Locally-redundant storage) - • Standard_GRS (Geo-redundant storage) - • Standard_RAGRS (Read access geo-redundant storage) - • Standard_ZRS - - Note that Standard_ZRS accounts cannot be changed to other account types, and other account types cannot be changed to Standard_ZRS. - - String - - - Profile - - - - AzureProfile - - - - Set-AzureStorageAccount + Save-AzureVMImage ResourceGroupName - Name of the Resource Group + Resource Group of the VM String - Name + VMName - Name of the Storage Account + Name of the VM String - CustomDomainName - - The name of the custom domain. - - String - - - UseSubDomain - - - - Nullable`1[Boolean] - - - Profile - - - - AzureProfile - - - - Set-AzureStorageAccount - - ResourceGroupName + DestinationContainerName - Name of the Resource Group + This is the name of the container inside which the vhds constituting the VMImage will reside. If they are spread across multiple storage accounts, one container with this name will be created in each storage account. String - - Name + + VHDNamePrefix - Name of the Storage Account + This is the prefix in the name of the blobs that will constitute the storage profile of the VMImage. For e.g. the OSDisk can be named vhdPrefix-osdisk String - - Tags + + Overwrite - + Indicates if any vhds with same Prefix inside the destination Container are encountered, should they be overwritten or not. - Hashtable[] + SwitchParameter Profile @@ -6891,7 +5819,7 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av ResourceGroupName - Name of the Resource Group + Resource Group of the VM String @@ -6901,9 +5829,9 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - Name + VMName - Name of the Storage Account + Name of the VM String @@ -6913,15 +5841,9 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - Type + DestinationContainerName - Specifies the account type of the storage account. One of four options: - • Standard_LRS (Locally-redundant storage) - • Standard_GRS (Geo-redundant storage) - • Standard_RAGRS (Read access geo-redundant storage) - • Standard_ZRS - - Note that Standard_ZRS accounts cannot be changed to other account types, and other account types cannot be changed to Standard_ZRS. + This is the name of the container inside which the vhds constituting the VMImage will reside. If they are spread across multiple storage accounts, one container with this name will be created in each storage account. String @@ -6930,22 +5852,10 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - - Profile - - - - AzureProfile - - AzureProfile - - - - - - CustomDomainName + + VHDNamePrefix - The name of the custom domain. + This is the prefix in the name of the blobs that will constitute the storage profile of the VMImage. For e.g. the OSDisk can be named vhdPrefix-osdisk String @@ -6954,38 +5864,26 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - - UseSubDomain - - - - Nullable`1[Boolean] - - Nullable`1[Boolean] - - - - - - Tags + + Overwrite - + Indicates if any vhds with same Prefix inside the destination Container are encountered, should they be overwritten or not. - Hashtable[] + SwitchParameter - Hashtable[] + SwitchParameter - - UseSubDomainName + + Profile - nullable`1[boolean] + AzureProfile - nullable`1[boolean] + AzureProfile @@ -7027,35 +5925,13 @@ $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1" -Av - -------------------------- Set Storage Account type -------------------------- - - PS C:\> - - PS C:\> # Set account type - Set-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -AccountType "Standard_RAGRS" - - - - - - - - - - - - - - - - -------------------------- Set Custom Domain -------------------------- + -------------------------- Example 1 -------------------------- PS C:\> - PS C:\> #Set custom domain - Set-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -CustomDomainName "domain name" –UseSubDomain “true” + Save-AzureVMImage -ResourceGroupName "RG1" -VMName "VM1" -DestinationContainerName "VM1" -VHDNamePrefix "VM1" - + Captures the VMImage. The Output property returns a JSON template that can be used to deploy from the captured VMImage. diff --git a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 index 43d9982a2e48..5cf0b78a2317 100644 --- a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 +++ b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 @@ -70,7 +70,8 @@ FormatsToProcess = @( '.\StreamAnalytics\Microsoft.Azure.Commands.StreamAnalytics.format.ps1xml', '.\Compute\Microsoft.Azure.Commands.Compute.format.ps1xml', '.\Network\Microsoft.Azure.Commands.Network.format.ps1xml', - '.\Storage\Microsoft.WindowsAzure.Commands.Storage.format.ps1xml' + '.\Storage\Microsoft.WindowsAzure.Commands.Storage.format.ps1xml', + '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.format.ps1xml' ) # Modules to import as nested modules of the module specified in ModuleToProcess @@ -93,7 +94,8 @@ NestedModules = @( '.\Network\Microsoft.Azure.Commands.Network.dll', '.\Storage\Microsoft.WindowsAzure.Commands.Storage.dll', '.\ResourceManager\Microsoft.Azure.Commands.ResourceManager.Cmdlets.dll', - '.\ApiManagement\Microsoft.Azure.Commands.ApiManagement.dll' + '.\ApiManagement\Microsoft.Azure.Commands.ApiManagement.dll', + '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.dll' ) # Functions to export from this module diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Commands.Management.Storage.csproj b/src/ResourceManager/Storage/Commands.Management.Storage/Commands.Management.Storage.csproj new file mode 100644 index 000000000000..f3953c7fe4a9 --- /dev/null +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Commands.Management.Storage.csproj @@ -0,0 +1,160 @@ + + + + + Debug + AnyCPU + {A50AB133-5C04-4A17-9054-F8343683EC23} + Library + Properties + Microsoft.Azure.Commands.Management.Storage + Microsoft.Azure.Commands.Management.Storage + v4.5 + 512 + ..\..\..\ + true + /assemblyCompareMode:StrongNameIgnoringVersion + + + true + full + false + ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\StorageManagement\ + DEBUG;TRACE + prompt + 4 + true + true + false + + + pdbonly + TRACE;SIGN + true + ..\..\..\Package\Release\ResourceManager\AzureResourceManager\StorageManagement\ + TRACE + bin\Release\Microsoft.Azure.Commands.Management.Storage.dll.CodeAnalysisLog.xml + true + GlobalSuppressions.cs + prompt + MinimumRecommendedRules.ruleset + ;$(ProgramFiles)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\Rule Sets + ;$(ProgramFiles)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\FxCop\Rules + true + true + MSSharedLibKey.snk + true + false + + + + ..\..\..\packages\Hyak.Common.1.0.2\lib\net45\Hyak.Common.dll + + + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + + ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll + + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + + + ..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll + + + + + + + ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Extensions.dll + + + ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll + + + + + + + + + + + + + + + + + + + + + + + + Always + + + Always + + + Always + + + + + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + + {e1f5201d-6067-430e-b303-4e367652991b} + Commands.Resources + + + {2493a8f7-1949-4f29-8d53-9d459046c3b8} + Commands.Tags + + + + + + + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/MSSharedLibKey.snk b/src/ResourceManager/Storage/Commands.Management.Storage/MSSharedLibKey.snk new file mode 100644 index 0000000000000000000000000000000000000000..695f1b38774e839e5b90059bfb7f32df1dff4223 GIT binary patch literal 160 zcmV;R0AK$ABme*efB*oL000060ssI2Bme+XQ$aBR1ONa50098C{E+7Ye`kjtcRG*W zi8#m|)B?I?xgZ^2Sw5D;l4TxtPwG;3)3^j?qDHjEteSTF{rM+4WI`v zCD?tsZ^;k+S&r1&HRMb=j738S=;J$tCKNrc$@P|lZ + + + + Get-AzureStorageAccount + + Get the properties of a Storage Account + + + + + Get + AzureStorageAccount + + + + This cmdlet allows you to get the properties of a specified Storage Account or all Storage Accounts within a Resource Group or the subscription. + + + + Get-AzureStorageAccount + + ResourceGroupName + + Name of the Resource Group + + String + + + Name + + Name of the Storage Account + + String + + + Profile + + + + AzureProfile + + + + + + ResourceGroupName + + Name of the Resource Group + + String + + String + + + + + + Name + + Name of the Storage Account + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Get a specified storage account -------------------------- + + PS C:\> + + PS C:\> #Get one storage account + Get-AzureStorageAccount -ResourceGroupName "RG1" -AccountName "myStorageAccount" + + + + + + + + + + + + + + + + -------------------------- Get all Storage Accounts in a Resource Group -------------------------- + + PS C:\> + + PS C:\> # Get all Storage Accounts in a Resource Group + Get-AzureStorageAccount -ResourceGroupName "RG1" + + + + + + + + + + + + + + + + -------------------------- Get all Storage Accounts in the subscription -------------------------- + + PS C:\> + + PS C:\> # Get all Storage Accounts in the subscription + Get-AzureStorageAccount + + + + + + + + + + + + + + + + + + + + + + Get-AzureStorageAccountKey + + Get the access keys for an Azure storage account + + + + + Get + AzureStorageAccountKey + + + + This cmdlet allows you to get the access keys for an Azure storage account. + + + + Get-AzureStorageAccountKey + + ResourceGroupName + + Name of the Resource Group + + String + + + Name + + Name of the Storage Account + + String + + + Profile + + + + AzureProfile + + + + + + ResourceGroupName + + Name of the Resource Group + + String + + String + + + + + + Name + + Name of the Storage Account + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Get the access keys for a Storage Account -------------------------- + + PS C:\> + + #Get keys + Get-AzureStorageAccountKey -ResourceGroupName "RG1" -AccountName "myStorageAccount" + + + + + + + + + + + + + + + + + + + + + + New-AzureStorageAccount + + Allows you to create a new Storage Account + + + + + New + AzureStorageAccount + + + + This cmdlet allows you to create a new Storage Account. + + + + New-AzureStorageAccount + + ResourceGroupName + + Name of the Resource Group + + String + + + Name + + Name of the Storage Account + + String + + + Type + + Type of Storage Account. Valid values are +• Standard_LRS (Locally-redundant storage) +• Standard_ZRS (Zone-redundant storage) +• Standard_GRS (Geo-redundant storage) +• Standard_RAGRS (Read access geo-redundant storage) + + String + + + Location + + Location of the Storage Account + + String + + + Profile + + + + AzureProfile + + + + + + ResourceGroupName + + Name of the Resource Group + + String + + String + + + + + + Name + + Name of the Storage Account + + String + + String + + + + + + Type + + Type of Storage Account. Valid values are +• Standard_LRS (Locally-redundant storage) +• Standard_ZRS (Zone-redundant storage) +• Standard_GRS (Geo-redundant storage) +• Standard_RAGRS (Read access geo-redundant storage) + + String + + String + + + + + + Location + + Location of the Storage Account + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 -------------------------- + + PS C:\> + + New-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -Location "US West" -AccountType "Standard_GRS" + + + + + + + + + + + + + + + + + + + + + + New-AzureStorageAccountKey + + Regenerates a storage key for an Azure storage account. + + + + + New + AzureStorageAccountKey + + + + Regenerates a storage key for an Azure storage account. + + + + New-AzureStorageAccountKey + + ResourceGroupName + + Name of the Resource Group the storage account is in + + String + + + Name + + Name of the Storage Account + + String + + + KeyName + + Specifies which key to regenerate. Supported value set: +- “key1” +- “key2” + + String + + + Profile + + + + AzureProfile + + + + + + ResourceGroupName + + Name of the Resource Group the storage account is in + + String + + String + + + + + + Name + + Name of the Storage Account + + String + + String + + + + + + KeyName + + Specifies which key to regenerate. Supported value set: +- “key1” +- “key2” + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 -------------------------- + + PS C:\> + + #Regenerate a key +New-AzureStorageKey -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -keyName "key1" + + + + + + + + + + + + + + + + + + + + + + Remove-AzureStorageAccount + + Remove Storage Account from Azure + + + + + Remove + AzureStorageAccount + + + + Remove Storage Account from Azure + + + + Remove-AzureStorageAccount + + ResourceGroupName + + Name of the Resource Group + + String + + + Name + + Name of the VM + + String + + + Profile + + + + AzureProfile + + + + + + ResourceGroupName + + Name of the Resource Group + + String + + String + + + + + + Name + + Name of the VM + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Remove Storage Account -------------------------- + + PS C:\> + + PS C:\> Remove-AzureStorageAccount -ResourceGroupName "RG1" -AccountName "myStorageAccount" + + + + + + + + + + + + + + + + + + + + + + Set-AzureStorageAccount + + Update the Storage Account properties + + + + + Set + AzureStorageAccount + + + + This cmdlet allows you to update the Storage Account properties. + + + + Set-AzureStorageAccount + + ResourceGroupName + + Name of the Resource Group + + String + + + Name + + Name of the Storage Account + + String + + + Type + + Specifies the account type of the storage account. One of four options: + • Standard_LRS (Locally-redundant storage) + • Standard_GRS (Geo-redundant storage) + • Standard_RAGRS (Read access geo-redundant storage) + • Standard_ZRS + + Note that Standard_ZRS accounts cannot be changed to other account types, and other account types cannot be changed to Standard_ZRS. + + String + + + Profile + + + + AzureProfile + + + + Set-AzureStorageAccount + + ResourceGroupName + + Name of the Resource Group + + String + + + Name + + Name of the Storage Account + + String + + + CustomDomainName + + The name of the custom domain. + + String + + + UseSubDomain + + + + Nullable`1[Boolean] + + + Profile + + + + AzureProfile + + + + Set-AzureStorageAccount + + ResourceGroupName + + Name of the Resource Group + + String + + + Name + + Name of the Storage Account + + String + + + Tags + + + + Hashtable[] + + + Profile + + + + AzureProfile + + + + + + ResourceGroupName + + Name of the Resource Group + + String + + String + + + + + + Name + + Name of the Storage Account + + String + + String + + + + + + Type + + Specifies the account type of the storage account. One of four options: + • Standard_LRS (Locally-redundant storage) + • Standard_GRS (Geo-redundant storage) + • Standard_RAGRS (Read access geo-redundant storage) + • Standard_ZRS + + Note that Standard_ZRS accounts cannot be changed to other account types, and other account types cannot be changed to Standard_ZRS. + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + CustomDomainName + + The name of the custom domain. + + String + + String + + + + + + UseSubDomain + + + + Nullable`1[Boolean] + + Nullable`1[Boolean] + + + + + + Tags + + + + Hashtable[] + + Hashtable[] + + + + + + UseSubDomainName + + + + nullable`1[boolean] + + nullable`1[boolean] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Set Storage Account type -------------------------- + + PS C:\> + + PS C:\> # Set account type + Set-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -AccountType "Standard_RAGRS" + + + + + + + + + + + + + + + + -------------------------- Set Custom Domain -------------------------- + + PS C:\> + + PS C:\> #Set custom domain + Set-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -CustomDomainName "domain name" –UseSubDomain “true” + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.format.ps1xml b/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.format.ps1xml new file mode 100644 index 000000000000..07c3905d6d48 --- /dev/null +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.format.ps1xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSStorageAccount.cs b/src/ResourceManager/Storage/Commands.Management.Storage/Models/PSStorageAccount.cs similarity index 97% rename from src/ResourceManager/Compute/Commands.Compute/Models/PSStorageAccount.cs rename to src/ResourceManager/Storage/Commands.Management.Storage/Models/PSStorageAccount.cs index 9442a3ac01cc..2418e6977f41 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSStorageAccount.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Models/PSStorageAccount.cs @@ -5,7 +5,7 @@ using System.Threading.Tasks; using Microsoft.Azure.Management.Storage.Models; -namespace Microsoft.Azure.Commands.Compute.Models +namespace Microsoft.Azure.Commands.Management.Storage.Models { class PSStorageAccount { diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs b/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..6c6d0f9bcaaf --- /dev/null +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Commands.Management.Storage")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Commands.Management.Storage")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("15fc0119-dd3b-4167-b458-7202c89d397d")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/GetAzureStorageAccount.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/GetAzureStorageAccount.cs similarity index 97% rename from src/ResourceManager/Compute/Commands.Compute/StorageAccount/GetAzureStorageAccount.cs rename to src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/GetAzureStorageAccount.cs index caa8299fa1b4..e937011e30f2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/GetAzureStorageAccount.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/GetAzureStorageAccount.cs @@ -16,7 +16,7 @@ using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; -namespace Microsoft.Azure.Commands.Compute +namespace Microsoft.Azure.Commands.Management.Storage { [Cmdlet(VerbsCommon.Get, StorageAccountNounStr), OutputType(typeof(StorageAccount))] public class GetAzureStorageAccountCommand : StorageAccountBaseCmdlet diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/GetAzureStorageAccountKey.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/GetAzureStorageAccountKey.cs similarity index 97% rename from src/ResourceManager/Compute/Commands.Compute/StorageAccount/GetAzureStorageAccountKey.cs rename to src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/GetAzureStorageAccountKey.cs index 91b7f1d3d1fb..e5886956f9a4 100644 --- a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/GetAzureStorageAccountKey.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/GetAzureStorageAccountKey.cs @@ -16,7 +16,7 @@ using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; -namespace Microsoft.Azure.Commands.Compute +namespace Microsoft.Azure.Commands.Management.Storage { [Cmdlet(VerbsCommon.Get, StorageAccountKeyNounStr), OutputType(typeof(StorageAccountKeys))] public class GetAzureStorageAccountKeyCommand : StorageAccountBaseCmdlet diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/NewAzureStorageAccount.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/NewAzureStorageAccount.cs similarity index 98% rename from src/ResourceManager/Compute/Commands.Compute/StorageAccount/NewAzureStorageAccount.cs rename to src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/NewAzureStorageAccount.cs index 10b96232236a..cd58adbaabce 100644 --- a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/NewAzureStorageAccount.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/NewAzureStorageAccount.cs @@ -16,7 +16,7 @@ using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; -namespace Microsoft.Azure.Commands.Compute +namespace Microsoft.Azure.Commands.Management.Storage { [Cmdlet(VerbsCommon.New, StorageAccountNounStr), OutputType(typeof(StorageAccount))] public class NewAzureStorageAccountCommand : StorageAccountBaseCmdlet diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/NewAzureStorageAccountKey.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/NewAzureStorageAccountKey.cs similarity index 98% rename from src/ResourceManager/Compute/Commands.Compute/StorageAccount/NewAzureStorageAccountKey.cs rename to src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/NewAzureStorageAccountKey.cs index 96d964ba0af4..fb599de4bfb7 100644 --- a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/NewAzureStorageAccountKey.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/NewAzureStorageAccountKey.cs @@ -17,7 +17,7 @@ using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; -namespace Microsoft.Azure.Commands.Compute +namespace Microsoft.Azure.Commands.Management.Storage { [Cmdlet(VerbsCommon.New, StorageAccountKeyNounStr), OutputType(typeof(StorageAccountKeys))] public class NewAzureStorageAccountKeyCommand : StorageAccountBaseCmdlet diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/RemoveAzureStorageAccount.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/RemoveAzureStorageAccount.cs similarity index 97% rename from src/ResourceManager/Compute/Commands.Compute/StorageAccount/RemoveAzureStorageAccount.cs rename to src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/RemoveAzureStorageAccount.cs index 7eca6d94b457..3ce3b113f57b 100644 --- a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/RemoveAzureStorageAccount.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/RemoveAzureStorageAccount.cs @@ -16,7 +16,7 @@ using Microsoft.Azure.Management.Storage.Models; using System.Management.Automation; -namespace Microsoft.Azure.Commands.Compute +namespace Microsoft.Azure.Commands.Management.Storage { ///

/// Lists all storage services underneath the subscription. diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/SetAzureStorageAccount.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/SetAzureStorageAccount.cs similarity index 98% rename from src/ResourceManager/Compute/Commands.Compute/StorageAccount/SetAzureStorageAccount.cs rename to src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/SetAzureStorageAccount.cs index bee14841733c..6560cfef6e8f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/SetAzureStorageAccount.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/SetAzureStorageAccount.cs @@ -20,7 +20,7 @@ using System.Collections.Generic; using System.Management.Automation; -namespace Microsoft.Azure.Commands.Compute +namespace Microsoft.Azure.Commands.Management.Storage { /// /// Lists all storage services underneath the subscription. diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/StorageAccountBaseCmdlet.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageAccountBaseCmdlet.cs similarity index 97% rename from src/ResourceManager/Compute/Commands.Compute/StorageAccount/StorageAccountBaseCmdlet.cs rename to src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageAccountBaseCmdlet.cs index 0d2c2a52d2ff..43e7b058b71f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/StorageAccountBaseCmdlet.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageAccountBaseCmdlet.cs @@ -15,12 +15,12 @@ using System; using System.Collections.Generic; using System.Management.Automation; -using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Commands.Management.Storage.Models; using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; -namespace Microsoft.Azure.Commands.Compute +namespace Microsoft.Azure.Commands.Management.Storage { public abstract class StorageAccountBaseCmdlet : AzurePSCmdlet { diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/StorageManagementClient.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageManagementClient.cs similarity index 96% rename from src/ResourceManager/Compute/Commands.Compute/StorageAccount/StorageManagementClient.cs rename to src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageManagementClient.cs index 011e316332d7..bc6d64f88aed 100644 --- a/src/ResourceManager/Compute/Commands.Compute/StorageAccount/StorageManagementClient.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageManagementClient.cs @@ -17,7 +17,7 @@ using Microsoft.Azure.Management.Storage; using System; -namespace Microsoft.Azure.Commands.Compute +namespace Microsoft.Azure.Commands.Management.Storage { public partial class StorageManagementClientWrapper { diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/packages.config b/src/ResourceManager/Storage/Commands.Management.Storage/packages.config new file mode 100644 index 000000000000..03c617ba9b74 --- /dev/null +++ b/src/ResourceManager/Storage/Commands.Management.Storage/packages.config @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file From 114fbdd8cf4bcf5c3acfbbab47be6242e691dfae Mon Sep 17 00:00:00 2001 From: Esha Parmar Date: Wed, 6 May 2015 10:50:22 -0700 Subject: [PATCH 10/40] Delete tests that have coverage in end to end --- .../ExtensionTests/DscExtensionTests.cs | 294 ------------------ .../Dsc/GetAzureVMDscExtensionCmdletInfo.cs | 28 -- .../RemoveAzureVMDscExtensionCmdletInfo.cs | 28 -- .../Dsc/SetAzureVMDscExtensionCmdletInfo.cs | 66 ---- .../ServiceManagementCmdletTestHelper.cs | 42 --- .../FunctionalTests/Utilities.cs | 5 - 6 files changed, 463 deletions(-) delete mode 100644 src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ExtensionTests/DscExtensionTests.cs delete mode 100644 src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/GetAzureVMDscExtensionCmdletInfo.cs delete mode 100644 src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/RemoveAzureVMDscExtensionCmdletInfo.cs delete mode 100644 src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/SetAzureVMDscExtensionCmdletInfo.cs diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ExtensionTests/DscExtensionTests.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ExtensionTests/DscExtensionTests.cs deleted file mode 100644 index da9784675a7d..000000000000 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ExtensionTests/DscExtensionTests.cs +++ /dev/null @@ -1,294 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using System; -using System.Collections; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text.RegularExpressions; -using Microsoft.VisualStudio.TestTools.UnitTesting; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.ConfigDataInfo; - -namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.ExtensionTests -{ - [TestClass] - public class DscExtensionTests: ServiceManagementTest - { - private const string DscExtensionPublisher = "Microsoft.Powershell.DSC"; - private const string DscExtensionName = "DSC"; - - private const string DefaultContainerName = "windows-powershell-dsc"; - - private const string testConfigurationArchive = "DscExtensionTestConfiguration.ps1"; - private const string testConfigurationName = "DscExtensionTestConfiguration"; - private Hashtable testConfigurationArgument = new Hashtable() { { "DestinationPath", @"'C:\MyDirectory" } }; - private const string testConfigurationDataPath = @".\DSC\DscExtensionTestConfigurationData.psd1"; - - private string testServiceName; - - private static string dscExtensionVersion; - - [ClassInitialize] - public static void ClassInitialize(TestContext context) - { - Utilities.PrintHeader("ClassInitialize"); - try - { - DscExtensionTests.dscExtensionVersion = GetDscExtensionVersion(); - } - finally - { - Utilities.PrintFooter("ClassInitialize"); - } - } - - [TestInitialize] - public void TestInitialize() - { - Utilities.PrintHeader("TestInitialize"); - try - { - this.testServiceName = Utilities.GetUniqueShortName(serviceNamePrefix); - this.testStartTime = DateTime.Now; - this.pass = false; - } - finally - { - Utilities.PrintFooter("TestInitialize"); - } - } - - [TestCleanup] - public void TestCleanup() - { - Utilities.PrintHeader("TestCleanup"); - try - { - Utilities.ExecuteAndLog(() => CleanupService(this.testServiceName), "Removing VM service used by tests"); - } - finally - { - Utilities.PrintFooter("TestCleanup"); - } - } - - #region TestCases - - [TestMethod(), Priority(0), TestCategory("Scenario"), TestProperty("Feature", "IaaS"), Owner("narrieta"), - Description("Test the cmdlets Set/Get-AzureVMDscExtension using a new VM")] - public void SetDscExtensionOnNewVmTest() - { - StartTest(MethodBase.GetCurrentMethod().Name, testStartTime); - - try - { - var vmName = Utilities.GetUniqueShortName(vmNamePrefix); - - var vm = Utilities.CreateIaaSVMObject(vmName, InstanceSize.Small, imageName, true, username, password); - - var arguments = new ServiceManagementCmdletTestHelper.SetAzureVMDscExtensionArguments() - { - Version = DscExtensionTests.dscExtensionVersion, - VM = vm, - ConfigurationArchive = testConfigurationArchive, - StorageContext = null, - ContainerName = DefaultContainerName, - ConfigurationName = testConfigurationName, - ConfigurationArgument = testConfigurationArgument, - ConfigurationDataPath = testConfigurationDataPath - }; - - vm = vmPowershellCmdlets.SetAzureVMDscExtension(arguments); - - vmPowershellCmdlets.NewAzureVM(this.testServiceName, new[] { vm }, locationName); - - VerifyDscExtensionContext(vmName, arguments); - - pass = true; - } - catch (Exception ex) - { - Console.WriteLine(ex.ToString()); - throw; - } - } - - [TestMethod(), Priority(0), TestCategory("Scenario"), TestProperty("Feature", "IaaS"), Owner("narrieta"), - Description("Test the cmdlets Set/Get-AzureVMDscExtension using an existing")] - public void SetDscExtensionOnExistingVmTest() - { - StartTest(MethodBase.GetCurrentMethod().Name, testStartTime); - - try - { - var vmName = Utilities.GetUniqueShortName(vmNamePrefix); - - var vm = Utilities.CreateIaaSVMObject(vmName, InstanceSize.Small, imageName, true, username, password); - - vmPowershellCmdlets.NewAzureVM(this.testServiceName, new[] { vm }, locationName); - - var arguments = new ServiceManagementCmdletTestHelper.SetAzureVMDscExtensionArguments() - { - Version = DscExtensionTests.dscExtensionVersion, - VM = vmPowershellCmdlets.GetAzureVM(vmName, this.testServiceName).VM, - ConfigurationArchive = testConfigurationArchive, - StorageContext = null, - ContainerName = DefaultContainerName, - ConfigurationName = testConfigurationName, - ConfigurationArgument = testConfigurationArgument, - ConfigurationDataPath = testConfigurationDataPath - }; - - vm = vmPowershellCmdlets.SetAzureVMDscExtension(arguments); - - vmPowershellCmdlets.UpdateAzureVM(vmName, this.testServiceName, vm); - - VerifyDscExtensionContext(vmName, arguments); - - pass = true; - } - catch (Exception ex) - { - Console.WriteLine(ex.ToString()); - throw; - } - } - - [TestMethod(), Priority(0), TestCategory("Scenario"), TestProperty("Feature", "IaaS"), Owner("narrieta"), - Description("Test the cmdlets Set-AzureVMDscExtension using default parameters")] - public void SetDscExtensionWithDefaultParametersTest() - { - StartTest(MethodBase.GetCurrentMethod().Name, testStartTime); - - try - { - var vmName = Utilities.GetUniqueShortName(vmNamePrefix); - - var vm = Utilities.CreateIaaSVMObject(vmName, InstanceSize.Small, imageName, true, username, password); - - var arguments = new ServiceManagementCmdletTestHelper.SetAzureVMDscExtensionArguments() - { - Version = DscExtensionTests.dscExtensionVersion, - VM = vm, - ConfigurationArchive = testConfigurationArchive, - StorageContext = null, - ContainerName = null, - ConfigurationName = null, - ConfigurationArgument = testConfigurationArgument, - ConfigurationDataPath = testConfigurationDataPath - }; - - vm = vmPowershellCmdlets.SetAzureVMDscExtension(arguments); - - vmPowershellCmdlets.NewAzureVM(this.testServiceName, new[] { vm }, locationName); - - VerifyDscExtensionContext(vmName, arguments); - - pass = true; - } - catch (Exception ex) - { - Console.WriteLine(ex.ToString()); - throw; - } - } - - #endregion TestCases - - #region Helper Methods - - private static string GetDscExtensionVersion() - { - Utilities.PrintHeader("Listing the available VM extensions"); - - try - { - var extensionsInfo = vmPowershellCmdlets.GetAzureVMAvailableExtension(DscExtensionName, DscExtensionPublisher, true); - - var dscExtension = extensionsInfo.OrderBy(c => c.Version).LastOrDefault(); - - if (dscExtension == null) - { - throw new Exception(string.Format("Cannot find DSC extension; Name: '{0}' Publisher: '{1}'", DscExtensionName, DscExtensionPublisher)); - } - - var match = Regex.Match(dscExtension.Version, @"((\.).*?){2}"); - - var version = dscExtension.Version.Substring(0, match.Groups[2].Captures[1].Index); - - Console.WriteLine("Using Dsc Extension Version: {0}", version); - - return version; - } - finally - { - Utilities.PrintFooter("Listing the available VM extensions"); - } - } - - private void VerifyDscExtensionContext(string vmName, ServiceManagementCmdletTestHelper.SetAzureVMDscExtensionArguments expected) - { - Utilities.PrintHeader("Verifiying Dsc extension context."); - - try - { - var vm = Utilities.GetAzureVM(vmName, this.testServiceName); - - var context = vmPowershellCmdlets.GetAzureVMDscExtension(vm); - - Utilities.LogAssert(() => Assert.AreEqual(DscExtensionName, context.ExtensionName), "Verifiying ExtensionName"); - Utilities.LogAssert(() => Assert.AreEqual(DscExtensionPublisher, context.Publisher), "Verifiying Publisher"); - Utilities.LogAssert(() => Assert.AreEqual(DscExtensionName, context.ReferenceName), "Verifiying ReferenceName"); - Utilities.LogAssert(() => Assert.AreEqual(dscExtensionVersion, context.Version), "Verifiying Version"); - Utilities.LogAssert(() => Assert.AreEqual("Enable", context.State), "Verifiying State"); - Utilities.LogAssert(() => Assert.AreEqual(vmName, context.RoleName), "Verifiying RoleName"); - - var expectedContainer = (expected.ContainerName ?? DefaultContainerName) + "/"; - Utilities.LogAssert(() => Assert.IsNotNull(context.ModulesUrl), "Verifiying ModulesUrl is not null"); - var modulesUrl = new Uri(context.ModulesUrl); - Utilities.LogAssert(() => Assert.AreEqual(3, modulesUrl.Segments.Length), "Verifiying ModulesUrl is well formed"); - Utilities.LogAssert(() => Assert.AreEqual(expectedContainer, modulesUrl.Segments[1]), "Verifiying the container in ModulesUrl"); - Utilities.LogAssert(() => Assert.AreEqual(expected.ConfigurationArchive, modulesUrl.Segments[2]), "Verifiying the configuration in ModulesUrl"); - - var expectedConfigurationName = expected.ConfigurationName ?? Path.GetFileNameWithoutExtension(expected.ConfigurationArchive); - var expectedConfigurationFunction = Path.GetFileNameWithoutExtension(expected.ConfigurationArchive) + "\\" + expectedConfigurationName; - Utilities.LogAssert(() => Assert.AreEqual(expectedConfigurationFunction, context.ConfigurationFunction), "Verifiying the configuration in ModulesUrl"); - - if (expected.ConfigurationArgument == null) - { - Utilities.LogAssert(() => Assert.IsNull(context.Properties), "Verifiying that Properties is null"); - } - else - { - Utilities.LogAssert(() => Assert.AreEqual(expected.ConfigurationArgument.Count, context.Properties.Count), "Verifiying number of items in Properties"); - - foreach (var key in expected.ConfigurationArgument.Keys) - { - var k = key; - - Utilities.LogAssert(() => Assert.AreEqual(expected.ConfigurationArgument[k], context.Properties[k]), "Verifiying Properties[" + key + "]"); - } - } - } - finally - { - Utilities.PrintHeader("Verifiying Dsc extension context."); - } - } - - #endregion Helper Methods - } -} - diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/GetAzureVMDscExtensionCmdletInfo.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/GetAzureVMDscExtensionCmdletInfo.cs deleted file mode 100644 index ab8e9997a957..000000000000 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/GetAzureVMDscExtensionCmdletInfo.cs +++ /dev/null @@ -1,28 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PowershellCore; - -namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extesnions.CustomScript -{ - public class GetAzureVMDscExtensionCmdletInfo:CmdletsInfo - { - public GetAzureVMDscExtensionCmdletInfo(IPersistentVM vm) - { - this.cmdletName = Utilities.GetAzureVMDscExtensionCmdletName; - this.cmdletParams.Add(new CmdletParam("VM",vm)); - } - } -} diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/RemoveAzureVMDscExtensionCmdletInfo.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/RemoveAzureVMDscExtensionCmdletInfo.cs deleted file mode 100644 index a743dc2279fc..000000000000 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/RemoveAzureVMDscExtensionCmdletInfo.cs +++ /dev/null @@ -1,28 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PowershellCore; - -namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extesnions.CustomScript -{ - public class RemoveAzureVMDscExtensionCmdletInfo : CmdletsInfo - { - public RemoveAzureVMDscExtensionCmdletInfo(IPersistentVM vm) - { - this.cmdletName = Utilities.RemoveAzureVMDscExtensionCmdletName; - this.cmdletParams.Add(new CmdletParam("VM", vm)); - } - } -} diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/SetAzureVMDscExtensionCmdletInfo.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/SetAzureVMDscExtensionCmdletInfo.cs deleted file mode 100644 index cd80f09cfbc8..000000000000 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/IaasCmdletInfo/Extesnions/Dsc/SetAzureVMDscExtensionCmdletInfo.cs +++ /dev/null @@ -1,66 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using System.Collections; -using Microsoft.WindowsAzure.Commands.Common.Storage; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PowershellCore; - -namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extesnions.Dsc -{ - public class SetAzureVMDscExtensionCmdletInfo: CmdletsInfo - { - public SetAzureVMDscExtensionCmdletInfo( - string version, - IPersistentVM vm, - string configurationArchive, - AzureStorageContext storageContext = null, - string containerName = null, - string configurationName = null, - Hashtable configurationArgument = null, - string configurationDataPath = null - ) - { - cmdletName = Utilities.SetAzureVMDscExtensionCmdletName; - - cmdletParams.AddRange( - new CmdletParam [] { - new CmdletParam("Version", version), - new CmdletParam("VM", vm), - new CmdletParam("ConfigurationArchive", configurationArchive), - }); - - if (storageContext != null) - { - cmdletParams.Add(new CmdletParam("StorageContext", storageContext)); - } - if (containerName != null) - { - cmdletParams.Add(new CmdletParam("ContainerName", containerName)); - } - if (configurationName != null) - { - cmdletParams.Add(new CmdletParam("ConfigurationName", configurationName)); - } - if (configurationArgument != null) - { - cmdletParams.Add(new CmdletParam("ConfigurationArgument", configurationArgument)); - } - if (configurationDataPath != null) - { - cmdletParams.Add(new CmdletParam("ConfigurationDataPath", configurationDataPath)); - } - } - } -} diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs index d054b7117276..f0cea75e5d34 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs @@ -34,7 +34,6 @@ using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extensions.BGInfo; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extensions.Common; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extesnions.CustomScript; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extesnions.Dsc; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extesnions.VMAccess; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extensions.SqlServer; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.ILB; @@ -2134,47 +2133,6 @@ internal SM.PersistentVM RemoveAzureVMCustomScriptExtension(SM.PersistentVM vm) } #endregion AzureVMCustomScriptExtensionCmdlets - #region AzureVMDscExtensionCmdlets - - internal struct SetAzureVMDscExtensionArguments - { - public string Version; - public SM.IPersistentVM VM; - public string ConfigurationArchive; - public AzureStorageContext StorageContext; - public string ContainerName; - public string ConfigurationName; - public Hashtable ConfigurationArgument; - public string ConfigurationDataPath; - } - - - internal SM.PersistentVM SetAzureVMDscExtension(SetAzureVMDscExtensionArguments args) - { - return RunPSCmdletAndReturnFirst( - new SetAzureVMDscExtensionCmdletInfo( - args.Version, - args.VM, - args.ConfigurationArchive, - args.StorageContext, - args.ContainerName, - args.ConfigurationName, - args.ConfigurationArgument, - args.ConfigurationDataPath)); - } - - internal VirtualMachineDscExtensionContext GetAzureVMDscExtension(SM.IPersistentVM vm) - { - return RunPSCmdletAndReturnFirst(new GetAzureVMDscExtensionCmdletInfo(vm)); - } - - internal SM.PersistentVM RemoveAzureVMDscExtension(SM.PersistentVM vm) - { - return RunPSCmdletAndReturnFirst(new RemoveAzureVMDscExtensionCmdletInfo(vm)); - } - - #endregion AzureVMDscExtensionCmdlets - #region AzureVMSqlServerExtensionCmdlets public VirtualMachineSqlServerExtensionContext GetAzureVMSqlServerExtension(SM.IPersistentVM vm, string version = null, string referenceName = null) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/Utilities.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/Utilities.cs index ba053603883e..eae0e21bee22 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/Utilities.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/Utilities.cs @@ -333,11 +333,6 @@ internal class Utilities public const string RemoveAzureNetworkInterfaceConfig = "Remove-AzureNetworkInterfaceConfig"; public const string GetAzureNetworkInterfaceConfig = "Get-AzureNetworkInterfaceConfig"; - // Custom script extension - public const string SetAzureVMDscExtensionCmdletName = "Set-AzureVMDscExtension"; - public const string GetAzureVMDscExtensionCmdletName = "Get-AzureVMDscExtension"; - public const string RemoveAzureVMDscExtensionCmdletName = "Remove-AzureVMDscExtension"; - // SqlServer extension public const string SetAzureVMSqlServerExtensionCmdletName = "Set-AzureVMSqlServerExtension"; public const string GetAzureVMSqlServerExtensionCmdletName = "Get-AzureVMSqlServerExtension"; From 4ed98280c162d449d1b404a50a137cca3a729326 Mon Sep 17 00:00:00 2001 From: emmazhu Date: Thu, 7 May 2015 11:45:21 +0800 Subject: [PATCH 11/40] Move resource storage account management cmdlets unittest to a new project. --- src/AzurePowershell.sln | 7 + .../Commands.Compute.Test.csproj | 28 --- .../Commands.Management.Storage.Test.csproj | 181 ++++++++++++++++++ .../Properties/AssemblyInfo.cs | 36 ++++ .../ScenarioTests/Common.ps1 | 134 +++++++++++++ .../ScenarioTests/StorageAccountTests.cs | 18 +- .../ScenarioTests/StorageAccountTests.ps1 | 16 +- .../TestGetAzureStorageAccount.json | 0 .../TestGetAzureStorageAccountKey.json | 0 .../TestNewAzureStorageAccount.json | 0 .../TestNewAzureStorageAccountKey.json | 0 .../TestPipingGetAccountToGetKey.json | 0 .../TestRemoveAzureStorageAccount.json | 0 .../TestSetAzureStorageAccount.json | 0 .../TestStorageAccount.json | 0 .../TestController.cs | 171 +++++++++++++++++ .../packages.config | 21 ++ 17 files changed, 567 insertions(+), 45 deletions(-) create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/Common.ps1 rename src/ResourceManager/{Compute/Commands.Compute.Test => Storage/Commands.Management.Storage.Test}/ScenarioTests/StorageAccountTests.cs (72%) rename src/ResourceManager/{Compute/Commands.Compute.Test => Storage/Commands.Management.Storage.Test}/ScenarioTests/StorageAccountTests.ps1 (96%) rename src/ResourceManager/{Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests => Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests}/TestGetAzureStorageAccount.json (100%) rename src/ResourceManager/{Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests => Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests}/TestGetAzureStorageAccountKey.json (100%) rename src/ResourceManager/{Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests => Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests}/TestNewAzureStorageAccount.json (100%) rename src/ResourceManager/{Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests => Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests}/TestNewAzureStorageAccountKey.json (100%) rename src/ResourceManager/{Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests => Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests}/TestPipingGetAccountToGetKey.json (100%) rename src/ResourceManager/{Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests => Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests}/TestRemoveAzureStorageAccount.json (100%) rename src/ResourceManager/{Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests => Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests}/TestSetAzureStorageAccount.json (100%) rename src/ResourceManager/{Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests => Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests}/TestStorageAccount.json (100%) create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage.Test/TestController.cs create mode 100644 src/ResourceManager/Storage/Commands.Management.Storage.Test/packages.config diff --git a/src/AzurePowershell.sln b/src/AzurePowershell.sln index aa0ec306dbdd..21fd57835eef 100644 --- a/src/AzurePowershell.sln +++ b/src/AzurePowershell.sln @@ -212,6 +212,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement.Test EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Management.Storage", "ResourceManager\Storage\Commands.Management.Storage\Commands.Management.Storage.csproj", "{A50AB133-5C04-4A17-9054-F8343683EC23}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Management.Storage.Test", "ResourceManager\Storage\Commands.Management.Storage.Test\Commands.Management.Storage.Test.csproj", "{7D1D3B56-4EB4-4819-86FD-43330DED8EE7}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -518,6 +520,10 @@ Global {A50AB133-5C04-4A17-9054-F8343683EC23}.Debug|Any CPU.Build.0 = Debug|Any CPU {A50AB133-5C04-4A17-9054-F8343683EC23}.Release|Any CPU.ActiveCfg = Release|Any CPU {A50AB133-5C04-4A17-9054-F8343683EC23}.Release|Any CPU.Build.0 = Release|Any CPU + {7D1D3B56-4EB4-4819-86FD-43330DED8EE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7D1D3B56-4EB4-4819-86FD-43330DED8EE7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7D1D3B56-4EB4-4819-86FD-43330DED8EE7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7D1D3B56-4EB4-4819-86FD-43330DED8EE7}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -559,5 +565,6 @@ Global {5764A3A4-586C-4536-8481-13007CAC111B} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {59D1B5DC-9175-43EC-90C6-CBA601B3565F} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {7D1D3B56-4EB4-4819-86FD-43330DED8EE7} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} EndGlobalSection EndGlobal diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj index 01b609058010..e03409b72820 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -145,7 +145,6 @@ - @@ -196,9 +195,6 @@ - - Always - Always @@ -220,30 +216,6 @@ Always - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - Always diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj new file mode 100644 index 000000000000..808f9ab03b09 --- /dev/null +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj @@ -0,0 +1,181 @@ + + + + + Debug + AnyCPU + {7D1D3B56-4EB4-4819-86FD-43330DED8EE7} + Library + Properties + Microsoft.Azure.Commands.Management.Storage.Test + Microsoft.Azure.Commands.Management.Storage.Test + v4.5 + 512 + ..\..\..\..\ + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\..\..\packages\Hyak.Common.1.0.2\lib\net45\Hyak.Common.dll + + + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + + ..\..\..\packages\Microsoft.Azure.Gallery.2.6.2-preview\lib\net40\Microsoft.Azure.Gallery.dll + + + ..\..\..\packages\Microsoft.Azure.Management.Authorization.0.18.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll + + + ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll + + + ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + + ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + + + ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5513.27084-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll + + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + + + ..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll + + + + + + + + False + ..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Extensions.dll + + + False + ..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll + + + + + + + + + ..\..\..\packages\xunit.1.9.2\lib\net20\xunit.dll + + + ..\..\..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll + + + + + + + + + + {c1bda476-a5cc-4394-914d-48b0ec31a710} + Commands.ScenarioTests.Common + + + {a50ab133-5c04-4a17-9054-f8343683ec23} + Commands.Management.Storage + + + + + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + + + + + + + + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..816b47814e8f --- /dev/null +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Commands.Management.Storage.Test")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Commands.Management.Storage.Test")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("779954d6-2751-45ba-ad0f-0e30d384c099")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/Common.ps1 new file mode 100644 index 000000000000..5d72c8e35701 --- /dev/null +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/Common.ps1 @@ -0,0 +1,134 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Cleans the created resource groups +#> +function Clean-ResourceGroup($rgname) +{ + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) { + Remove-AzureResourceGroup -Name $rgname -Force + } +} + +###################### +# +# Retry the given code block until it succeeds or times out. +# +# param [ScriptBlock] $script : The code to test +# param [int] $times : The times of running the code +# param [string] $message : The text of the exception that should be thrown +####################### +function Retry-IfException +{ + param([ScriptBlock] $script, [int] $times = 30, [string] $message = "*") + + if ($times -le 0) + { + throw 'Retry time(s) should not be equal to or less than 0.'; + } + + $oldErrorActionPreferenceValue = $ErrorActionPreference; + $ErrorActionPreference = "SilentlyContinue"; + + $iter = 0; + $succeeded = $false; + while (($iter -lt $times) -and (-not $succeeded)) + { + $iter += 1; + + &$script; + + if ($Error.Count -gt 0) + { + $actualMessage = $Error[0].Exception.Message; + + Write-Output ("Caught exception: '$actualMessage'"); + + if (-not ($actualMessage -like $message)) + { + $ErrorActionPreference = $oldErrorActionPreferenceValue; + throw "Expected exception not received: '$message' the actual message is '$actualMessage'"; + } + + $Error.Clear(); + Wait-Seconds 10; + continue; + } + + $succeeded = $true; + } + + $ErrorActionPreference = $oldErrorActionPreferenceValue; +} + +<# +.SYNOPSIS +Gets random resource name +#> +function Get-RandomItemName +{ + param([string] $prefix = "pslibtest") + + if ($prefix -eq $null -or $prefix -eq '') + { + $prefix = "pslibtest"; + } + + $str = $prefix + ((Get-Random) % 10000); + return $str; +} + +<# +.SYNOPSIS +Gets valid resource name for compute test +#> +function Get-StorageManagementTestResourceName +{ + $stack = Get-PSCallStack + $testName = $null; + foreach ($frame in $stack) + { + if ($frame.Command.StartsWith("Test-", "CurrentCultureIgnoreCase")) + { + $testName = $frame.Command; + } + } + + $oldErrorActionPreferenceValue = $ErrorActionPreference; + $ErrorActionPreference = "SilentlyContinue"; + + try + { + $assetName = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::GetAssetName($testName, "pstestrg"); + } + catch + { + if (($Error.Count -gt 0) -and ($Error[0].Exception.Message -like '*Unable to find type*')) + { + $assetName = Get-RandomItemName; + } + else + { + throw; + } + } + finally + { + $ErrorActionPreference = $oldErrorActionPreferenceValue; + } + + return $assetName +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/StorageAccountTests.cs b/src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/StorageAccountTests.cs similarity index 72% rename from src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/StorageAccountTests.cs rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/StorageAccountTests.cs index c29b1bbdde27..64753d6be3fd 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/StorageAccountTests.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/StorageAccountTests.cs @@ -16,7 +16,7 @@ using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; -namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests +namespace Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests { public class StorageAccountTests { @@ -24,56 +24,56 @@ public class StorageAccountTests [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestStorageAccount() { - ComputeTestController.NewInstance.RunPsTest("Test-StorageAccount"); + TestController.NewInstance.RunPsTest("Test-StorageAccount"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNewAzureStorageAccount() { - ComputeTestController.NewInstance.RunPsTest("Test-NewAzureStorageAccount"); + TestController.NewInstance.RunPsTest("Test-NewAzureStorageAccount"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetAzureStorageAccount() { - ComputeTestController.NewInstance.RunPsTest("Test-GetAzureStorageAccount"); + TestController.NewInstance.RunPsTest("Test-GetAzureStorageAccount"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestSetAzureStorageAccount() { - ComputeTestController.NewInstance.RunPsTest("Test-SetAzureStorageAccount"); + TestController.NewInstance.RunPsTest("Test-SetAzureStorageAccount"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRemoveAzureStorageAccount() { - ComputeTestController.NewInstance.RunPsTest("Test-RemoveAzureStorageAccount"); + TestController.NewInstance.RunPsTest("Test-RemoveAzureStorageAccount"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetAzureStorageAccountKey() { - ComputeTestController.NewInstance.RunPsTest("Test-GetAzureStorageAccountKey"); + TestController.NewInstance.RunPsTest("Test-GetAzureStorageAccountKey"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNewAzureStorageAccountKey() { - ComputeTestController.NewInstance.RunPsTest("Test-NewAzureStorageAccountKey"); + TestController.NewInstance.RunPsTest("Test-NewAzureStorageAccountKey"); } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestPipingGetAccountToGetKey() { - ComputeTestController.NewInstance.RunPsTest("Test-PipingGetAccountToGetKey"); + TestController.NewInstance.RunPsTest("Test-PipingGetAccountToGetKey"); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/StorageAccountTests.ps1 b/src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/StorageAccountTests.ps1 similarity index 96% rename from src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/StorageAccountTests.ps1 rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/StorageAccountTests.ps1 index c3982edd9040..110d6d8a7e6b 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/StorageAccountTests.ps1 +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/ScenarioTests/StorageAccountTests.ps1 @@ -19,7 +19,7 @@ Test StorageAccount function Test-StorageAccount { # Setup - $rgname = Get-ComputeTestResourceName; + $rgname = Get-StorageManagementTestResourceName; try { @@ -97,7 +97,7 @@ Test New-AzureStorageAccount function Test-NewAzureStorageAccount { # Setup - $rgname = Get-ComputeTestResourceName; + $rgname = Get-StorageManagementTestResourceName; try { @@ -126,7 +126,7 @@ Test Get-AzureStorageAccount function Test-GetAzureStorageAccount { # Setup - $rgname = Get-ComputeTestResourceName; + $rgname = Get-StorageManagementTestResourceName; try { @@ -166,7 +166,7 @@ Test Set-AzureStorageAccount function Test-SetAzureStorageAccount { # Setup - $rgname = Get-ComputeTestResourceName; + $rgname = Get-StorageManagementTestResourceName; try { @@ -217,7 +217,7 @@ Test Remove-AzureStorageAccount function Test-RemoveAzureStorageAccount { # Setup - $rgname = Get-ComputeTestResourceName; + $rgname = Get-StorageManagementTestResourceName; try { @@ -246,7 +246,7 @@ Test Get-AzureStorageAccountKey function Test-GetAzureStorageAccountKey { # Setup - $rgname = Get-ComputeTestResourceName; + $rgname = Get-StorageManagementTestResourceName; try { @@ -278,7 +278,7 @@ Test New-AzureStorageAccountKey function Test-NewAzureStorageAccountKey { # Setup - $rgname = Get-ComputeTestResourceName; + $rgname = Get-StorageManagementTestResourceName; try { @@ -322,7 +322,7 @@ Test Get-AzureStorageAccount | Get-AzureStorageAccountKey function Test-PipingGetAccountToGetKey { # Setup - $rgname = Get-ComputeTestResourceName; + $rgname = Get-StorageManagementTestResourceName; try { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestGetAzureStorageAccount.json b/src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestGetAzureStorageAccount.json similarity index 100% rename from src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestGetAzureStorageAccount.json rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestGetAzureStorageAccount.json diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestGetAzureStorageAccountKey.json b/src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestGetAzureStorageAccountKey.json similarity index 100% rename from src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestGetAzureStorageAccountKey.json rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestGetAzureStorageAccountKey.json diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestNewAzureStorageAccount.json b/src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNewAzureStorageAccount.json similarity index 100% rename from src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestNewAzureStorageAccount.json rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNewAzureStorageAccount.json diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestNewAzureStorageAccountKey.json b/src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNewAzureStorageAccountKey.json similarity index 100% rename from src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestNewAzureStorageAccountKey.json rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNewAzureStorageAccountKey.json diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestPipingGetAccountToGetKey.json b/src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestPipingGetAccountToGetKey.json similarity index 100% rename from src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestPipingGetAccountToGetKey.json rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestPipingGetAccountToGetKey.json diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestRemoveAzureStorageAccount.json b/src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestRemoveAzureStorageAccount.json similarity index 100% rename from src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestRemoveAzureStorageAccount.json rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestRemoveAzureStorageAccount.json diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestSetAzureStorageAccount.json b/src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestSetAzureStorageAccount.json similarity index 100% rename from src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestSetAzureStorageAccount.json rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestSetAzureStorageAccount.json diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestStorageAccount.json b/src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestStorageAccount.json similarity index 100% rename from src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests/TestStorageAccount.json rename to src/ResourceManager/Storage/Commands.Management.Storage.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestStorageAccount.json diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/TestController.cs b/src/ResourceManager/Storage/Commands.Management.Storage.Test/TestController.cs new file mode 100644 index 000000000000..4ba83dcca30d --- /dev/null +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/TestController.cs @@ -0,0 +1,171 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Gallery; +using Microsoft.Azure.Management.Authorization; +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Subscriptions; +using Microsoft.Azure.Test; +using Microsoft.WindowsAzure.Commands.ScenarioTest; + +namespace Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests +{ + public class TestController + { + bool testViaCsm = true; // Currently set to true, we will get this from Environment varialbe. + + private CSMTestEnvironmentFactory csmTestFactory; + private EnvironmentSetupHelper helper; + + public ResourceManagementClient ResourceManagementClient { get; private set; } + + public SubscriptionClient SubscriptionClient { get; private set; } + + public AuthorizationManagementClient AuthorizationManagementClient { get; private set; } + + public StorageManagementClient StorageClient { get; private set; } + + public GalleryClient GalleryClient { get; private set; } + + + public string UserDomain { get; private set; } + + public static TestController NewInstance + { + get + { + return new TestController(); + } + } + + public TestController() + { + helper = new EnvironmentSetupHelper(); + } + + public void RunPsTest(params string[] scripts) + { + var callingClassType = TestUtilities.GetCallingClass(2); + var mockName = TestUtilities.GetCurrentMethodName(2); + + RunPsTestWorkflow( + () => scripts, + // no custom initializer + null, + // no custom cleanup + null, + callingClassType, + mockName); + } + + public void RunPsTestWorkflow( + Func scriptBuilder, + Action initialize, + Action cleanup, + string callingClassType, + string mockName) + { + using (UndoContext context = UndoContext.Current) + { + context.Start(callingClassType, mockName); + + this.csmTestFactory = new CSMTestEnvironmentFactory(); + + if(initialize != null) + { + initialize(this.csmTestFactory); + } + + SetupManagementClients(); + + helper.SetupEnvironment(AzureModule.AzureResourceManager); + + var callingClassName = callingClassType + .Split(new[] { "." }, StringSplitOptions.RemoveEmptyEntries) + .Last(); + helper.SetupModules( + AzureModule.AzureResourceManager, + "ScenarioTests\\Common.ps1", + "ScenarioTests\\" + callingClassName + ".ps1"); + + try + { + if (scriptBuilder != null) + { + var psScripts = scriptBuilder(); + + if (psScripts != null) + { + helper.RunPowerShellTest(psScripts); + } + } + } + finally + { + if(cleanup !=null) + { + cleanup(); + } + } + } + } + + private void SetupManagementClients() + { + ResourceManagementClient = GetResourceManagementClient(); + SubscriptionClient = GetSubscriptionClient(); + StorageClient = GetStorageManagementClient(); + GalleryClient = GetGalleryClient(); + AuthorizationManagementClient = GetAuthorizationManagementClient(); + + helper.SetupManagementClients( + ResourceManagementClient, + SubscriptionClient, + StorageClient, + GalleryClient, + AuthorizationManagementClient); + } + + private ResourceManagementClient GetResourceManagementClient() + { + return TestBase.GetServiceClient(this.csmTestFactory); + } + + private SubscriptionClient GetSubscriptionClient() + { + return TestBase.GetServiceClient(this.csmTestFactory); + } + + private AuthorizationManagementClient GetAuthorizationManagementClient() + { + return TestBase.GetServiceClient(this.csmTestFactory); + } + + private GalleryClient GetGalleryClient() + { + return TestBase.GetServiceClient(this.csmTestFactory); + } + + private StorageManagementClient GetStorageManagementClient() + { + return testViaCsm + ? TestBase.GetServiceClient(this.csmTestFactory) + : TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + } + } +} diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/packages.config b/src/ResourceManager/Storage/Commands.Management.Storage.Test/packages.config new file mode 100644 index 000000000000..8c88c7093ac7 --- /dev/null +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/packages.config @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 7eaf123ad9937eaf7f9946ec65fb76f85652759a Mon Sep 17 00:00:00 2001 From: emmazhu Date: Fri, 8 May 2015 10:36:22 +0800 Subject: [PATCH 12/40] Change help content to make it consistant. --- .../Microsoft.Azure.Commands.Management.Storage.dll-Help.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.xml b/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.xml index 8bf2ec188854..4f5b746f5ee1 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.xml +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.xml @@ -490,7 +490,7 @@ PS C:\> - New-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -Location "US West" -AccountType "Standard_GRS" + New-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -Location "US West" -Type "Standard_GRS" @@ -1083,7 +1083,7 @@ New-AzureStorageKey -ResourceGroupName "myResourceGroup" -AccountName PS C:\> PS C:\> # Set account type - Set-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -AccountType "Standard_RAGRS" + Set-AzureStorageAccount -ResourceGroupName "myResourceGroup" -AccountName "myStorageAccount" -Type "Standard_RAGRS" From cdf068509112bfec61ffebc51cda15e01f88e17c Mon Sep 17 00:00:00 2001 From: emmazhu Date: Fri, 8 May 2015 17:25:57 +0800 Subject: [PATCH 13/40] Remove unneccessary app.config reference. --- .../Commands.Management.Storage.Test.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj index 808f9ab03b09..ba857699d723 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj @@ -122,7 +122,6 @@ - Always From b1e50518841e4f3a4e77225a2cd398b69f1cadc6 Mon Sep 17 00:00:00 2001 From: Esha Parmar Date: Mon, 11 May 2015 10:01:13 -0700 Subject: [PATCH 14/40] Fixed failing configuration parsing and serialization tests --- ...s.ServiceManagement.Extensions.Test.csproj | 69 +++-- ...xtensionConfigurationParsingHelperTests.cs | 284 ++++++++---------- .../DscExtensionSettingsSerializerTests.cs | 90 +++--- .../DSC/Configurations/VisualStudio.ps1 | 2 +- .../Commands.ServiceManagement.Test.csproj | 4 - 5 files changed, 215 insertions(+), 234 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Commands.ServiceManagement.Extensions.Test.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Commands.ServiceManagement.Extensions.Test.csproj index 2b4b9ac2e722..2332aeb0bce9 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Commands.ServiceManagement.Extensions.Test.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Commands.ServiceManagement.Extensions.Test.csproj @@ -89,7 +89,10 @@ - + + False + ..\..\..\packages\System.Management.Automation_PowerShell_3.0.6.3.9600.17400\lib\net40\System.Management.Automation.dll + @@ -145,22 +148,54 @@ - - - - - - - - - - - - - - - - + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionConfigurationParsingHelperTests.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionConfigurationParsingHelperTests.cs index a051046d162f..f45376876559 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionConfigurationParsingHelperTests.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionConfigurationParsingHelperTests.cs @@ -16,9 +16,10 @@ using System.IO; using System.IO.Compression; using System.Linq; - -using Microsoft.VisualStudio.TestTools.UnitTesting; +using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.DSC; +using Xunit; + namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.Test.DSC { @@ -28,37 +29,31 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.Test.DSC /// /// ConfigurationParsingHelper.ParseConfiguration() API requires tests to be run in x64 host. /// - [TestClass] public class DscExtensionConfigurationParsingHelperTests { - private const string CorporateClientConfigurationPath = @"DSC\Configurations\CorporateClientConfiguration.ps1"; - private const string DomainControllerConfigurationPath = @"DSC\Configurations\DomainControllerConfiguration.ps1"; - private const string SHMulptiConfigurationsPath = @"DSC\Configurations\SHMulptiConfigurations.ps1"; - private const string VisualStudioPath = @"DSC\Configurations\VisualStudio.ps1"; - private const string NameImportListInsideNodeConfigurationPath = @"DSC\Configurations\Dummy\NameImportListInsideNode.ps1"; - private const string NameImportListOutsideNodeConfigurationPath = @"DSC\Configurations\Dummy\NameImportListOutsideNode.ps1"; - private const string NameImportSingleInsideNodeConfigurationPath = @"DSC\Configurations\Dummy\NameImportSingleInsideNode.ps1"; - private const string NameImportSingleOutsideNodeConfigurationPath = @"DSC\Configurations\Dummy\NameImportSingleOutsideNode.ps1"; - private const string NameModuleImportSingleInsideNodeConfigurationPath = @"DSC\Configurations\Dummy\NameModuleImportSingleInsideNode.ps1"; - private const string ModuleImportListInsideNodeConfigurationPath = @"DSC\Configurations\Dummy\ModuleImportListInsideNode.ps1"; - private const string ModuleImportListOutsideNodeConfigurationPath = @"DSC\Configurations\Dummy\ModuleImportListOutsideNode.ps1"; - private const string ModuleImportSingleInsideNodeConfigurationPath = @"DSC\Configurations\Dummy\ModuleImportSingleInsideNode.ps1"; - private const string ModuleImportSingleOutsideNodeConfigurationPath = @"DSC\Configurations\Dummy\ModuleImportSingleOutsideNode.ps1"; - private const string IEEScGoodConfigurationPath = @"DSC\Configurations\IEEScGood.ps1"; - private const string IEEScBadConfigurationPath = @"DSC\Configurations\IEEScBad.ps1"; + private const string CorporateClientConfigurationPath = @"Resources\DSC\Configurations\CorporateClientConfiguration.ps1"; + private const string DomainControllerConfigurationPath = @"Resources\DSC\Configurations\DomainControllerConfiguration.ps1"; + private const string ShMulptiConfigurationsPath = @"Resources\DSC\Configurations\SHMulptiConfigurations.ps1"; + private const string VisualStudioPath = @"Resources\DSC\Configurations\VisualStudio.ps1"; + private const string NameImportListInsideNodeConfigurationPath = @"Resources\DSC\Configurations\Dummy\NameImportListInsideNode.ps1"; + private const string NameImportListOutsideNodeConfigurationPath = @"Resources\DSC\Configurations\Dummy\NameImportListOutsideNode.ps1"; + private const string NameImportSingleInsideNodeConfigurationPath = @"Resources\DSC\Configurations\Dummy\NameImportSingleInsideNode.ps1"; + private const string NameImportSingleOutsideNodeConfigurationPath = @"Resources\DSC\Configurations\Dummy\NameImportSingleOutsideNode.ps1"; + private const string NameModuleImportSingleInsideNodeConfigurationPath = @"Resources\DSC\Configurations\Dummy\NameModuleImportSingleInsideNode.ps1"; + private const string ModuleImportListInsideNodeConfigurationPath = @"Resources\DSC\Configurations\Dummy\ModuleImportListInsideNode.ps1"; + private const string ModuleImportListOutsideNodeConfigurationPath = @"Resources\DSC\Configurations\Dummy\ModuleImportListOutsideNode.ps1"; + private const string ModuleImportSingleInsideNodeConfigurationPath = @"Resources\DSC\Configurations\Dummy\ModuleImportSingleInsideNode.ps1"; + private const string ModuleImportSingleOutsideNodeConfigurationPath = @"Resources\DSC\Configurations\Dummy\ModuleImportSingleOutsideNode.ps1"; + private const string IeeScGoodConfigurationPath = @"Resources\DSC\Configurations\IEEScGood.ps1"; + private const string IeeScBadConfigurationPath = @"Resources\DSC\Configurations\IEEScBad.ps1"; private const string TestDscResourceModulesDirectory = @"azure-sdk-tools-dsc-test"; - private const string xDscResourcesArchivePath = @"DSC\DSC Resource Kit Wave 6 08282014.zip"; + private const string XDscResourcesArchivePath = @"Resources\DSC\DSC Resource Kit Wave 6 08282014.zip"; - private const string PSModulePathEnvVar = "PSModulePath"; + private const string PsModulePathEnvVar = "PSModulePath"; - /// - /// Unpack and populate custom DSC resource modules. - /// - /// - [ClassInitialize] - public static void ClassInit(TestContext a) + public DscExtensionConfigurationParsingHelperTests() { string testDscResourceModulesPath = Path.Combine(Path.GetTempPath(), TestDscResourceModulesDirectory); if (Directory.Exists(testDscResourceModulesPath)) @@ -67,226 +62,185 @@ public static void ClassInit(TestContext a) Directory.Delete(testDscResourceModulesPath, true); } // unpack xPSDSC resources - ZipFile.ExtractToDirectory(xDscResourcesArchivePath, testDscResourceModulesPath); + ZipFile.ExtractToDirectory(XDscResourcesArchivePath, testDscResourceModulesPath); // Set $env:PSModulePath to include temp folder, so resources can be explored. - string psModulePath = Environment.GetEnvironmentVariable(PSModulePathEnvVar); - Environment.SetEnvironmentVariable(PSModulePathEnvVar, psModulePath + ";" + testDscResourceModulesPath); + string psModulePath = Environment.GetEnvironmentVariable(PsModulePathEnvVar); + string newpsModulePath = psModulePath + ";" + testDscResourceModulesPath; + Environment.SetEnvironmentVariable(PsModulePathEnvVar, newpsModulePath); } - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetModuleNameForDscResourceXComputer() { string moduleName = ConfigurationParsingHelper.GetModuleNameForDscResource("MSFT_xComputer"); - Assert.AreEqual("xComputerManagement", moduleName); + Assert.Equal("xComputerManagement", moduleName); } - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - public void TestGetModuleNameForDscResourceXADDomain() + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetModuleNameForDscResourceXadDomain() { string moduleName = ConfigurationParsingHelper.GetModuleNameForDscResource("MSFT_xADDomain"); - Assert.AreEqual("xActiveDirectory", moduleName); + Assert.Equal("xActiveDirectory", moduleName); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(CorporateClientConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestExtractConfigurationNames1() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(CorporateClientConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(1, results.RequiredModules.Count); - Assert.AreEqual("xComputerManagement", results.RequiredModules[0]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(1, results.RequiredModules.Count); + Assert.Equal("xComputerManagement", results.RequiredModules[0]); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(DomainControllerConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestExtractConfigurationNames2() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(DomainControllerConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(2, results.RequiredModules.Count); - Assert.AreEqual("xComputerManagement", results.RequiredModules[0]); - Assert.AreEqual("xActiveDirectory", results.RequiredModules[1]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(2, results.RequiredModules.Count); + Assert.Equal("xComputerManagement", results.RequiredModules[0]); + Assert.Equal("xActiveDirectory", results.RequiredModules[1]); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(VisualStudioPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestExtractConfigurationNames3() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(VisualStudioPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(1, results.RequiredModules.Count); - Assert.AreEqual("xPSDesiredStateConfiguration", results.RequiredModules[0]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(1, results.RequiredModules.Count); + Assert.Equal("xPSDesiredStateConfiguration", results.RequiredModules[0]); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(SHMulptiConfigurationsPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestExtractConfigurationNamesMulti() { - ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(SHMulptiConfigurationsPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(3, results.RequiredModules.Count); - Assert.AreEqual("xComputerManagement", results.RequiredModules[0]); - Assert.AreEqual("xNetworking", results.RequiredModules[1]); - Assert.AreEqual("xPSDesiredStateConfiguration", results.RequiredModules[2]); + ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ShMulptiConfigurationsPath); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(3, results.RequiredModules.Count); + Assert.Equal("xComputerManagement", results.RequiredModules[0]); + Assert.Equal("xNetworking", results.RequiredModules[1]); + Assert.Equal("xPSDesiredStateConfiguration", results.RequiredModules[2]); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(NameImportListInsideNodeConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNameImportListInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameImportListInsideNodeConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(2, results.RequiredModules.Count); - Assert.AreEqual("xComputerManagement", results.RequiredModules[0]); - Assert.AreEqual("xActiveDirectory", results.RequiredModules[1]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(2, results.RequiredModules.Count); + Assert.Equal("xComputerManagement", results.RequiredModules[0]); + Assert.Equal("xActiveDirectory", results.RequiredModules[1]); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(NameImportListOutsideNodeConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNameImportListOutsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameImportListOutsideNodeConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(2, results.RequiredModules.Count); - Assert.AreEqual("xComputerManagement", results.RequiredModules[0]); - Assert.AreEqual("xActiveDirectory", results.RequiredModules[1]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(2, results.RequiredModules.Count); + Assert.Equal("xComputerManagement", results.RequiredModules[0]); + Assert.Equal("xActiveDirectory", results.RequiredModules[1]); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(NameImportSingleInsideNodeConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNameImportSingleInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameImportSingleInsideNodeConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(1, results.RequiredModules.Count); - Assert.AreEqual("xComputerManagement", results.RequiredModules[0]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(1, results.RequiredModules.Count); + Assert.Equal("xComputerManagement", results.RequiredModules[0]); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(NameImportSingleOutsideNodeConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNameImportSingleOutsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameImportSingleOutsideNodeConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(1, results.RequiredModules.Count); - Assert.AreEqual("xComputerManagement", results.RequiredModules[0]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(1, results.RequiredModules.Count); + Assert.Equal("xComputerManagement", results.RequiredModules[0]); } - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(NameModuleImportSingleInsideNodeConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNameModuleImportSingleInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameModuleImportSingleInsideNodeConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(1, results.RequiredModules.Count); - Assert.AreEqual("xComputerManagement", results.RequiredModules[0]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(1, results.RequiredModules.Count); + Assert.Equal("xComputerManagement", results.RequiredModules[0]); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(ModuleImportListInsideNodeConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestModuleImportListInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ModuleImportListInsideNodeConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(2, results.RequiredModules.Count); - Assert.AreEqual("xPSDesiredStateConfiguration", results.RequiredModules[0]); - Assert.AreEqual("xNetworking", results.RequiredModules[1]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(2, results.RequiredModules.Count); + Assert.Equal("xPSDesiredStateConfiguration", results.RequiredModules[0]); + Assert.Equal("xNetworking", results.RequiredModules[1]); } - [Ignore] - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(ModuleImportListOutsideNodeConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestModuleImportListOutsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ModuleImportListOutsideNodeConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(2, results.RequiredModules.Count); - Assert.AreEqual("xPSDesiredStateConfiguration", results.RequiredModules[0]); - Assert.AreEqual("xNetworking", results.RequiredModules[1]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(2, results.RequiredModules.Count); + Assert.Equal("xPSDesiredStateConfiguration", results.RequiredModules[0]); + Assert.Equal("xNetworking", results.RequiredModules[1]); } - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(ModuleImportSingleInsideNodeConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestModuleImportSingleInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ModuleImportSingleInsideNodeConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(1, results.RequiredModules.Count); - Assert.AreEqual("xNetworking", results.RequiredModules[0]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(1, results.RequiredModules.Count); + Assert.Equal("xNetworking", results.RequiredModules[0]); } - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(ModuleImportSingleOutsideNodeConfigurationPath)] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestModuleImportSingleOutsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ModuleImportSingleOutsideNodeConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(1, results.RequiredModules.Count); - Assert.AreEqual("xNetworking", results.RequiredModules[0]); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(1, results.RequiredModules.Count); + Assert.Equal("xNetworking", results.RequiredModules[0]); } - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(IEEScGoodConfigurationPath)] - public void TestIEEScGood() + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestIeeScGood() { - ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(IEEScGoodConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(1, results.RequiredModules.Count); - Assert.AreEqual("xSystemSecurity", results.RequiredModules[0]); + ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(IeeScGoodConfigurationPath); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(1, results.RequiredModules.Count); + Assert.Equal("xSystemSecurity", results.RequiredModules[0]); } - [TestMethod] - [TestCategory("Scenario")] - [TestCategory("x64_only")] - [DeploymentItem(IEEScBadConfigurationPath)] - public void TestIEEScBad() + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestIeeScBad() { - ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(IEEScBadConfigurationPath); - Assert.AreEqual(0, results.Errors.Count(), "Parsing errors"); - Assert.AreEqual(1, results.RequiredModules.Count); - Assert.AreEqual("xSystemSecurity", results.RequiredModules[0]); + ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(IeeScBadConfigurationPath); + Assert.Equal(0, results.Errors.Count()); + Assert.Equal(1, results.RequiredModules.Count); + Assert.Equal("xSystemSecurity", results.RequiredModules[0]); } } } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionSettingsSerializerTests.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionSettingsSerializerTests.cs index b21485c26a70..a3bac6b68c50 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionSettingsSerializerTests.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionSettingsSerializerTests.cs @@ -14,15 +14,14 @@ using System; using System.Collections; +using System.Globalization; using System.Linq; using System.Management.Automation; using System.Security; - -using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions; using Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.DSC; - +using Xunit; using Newtonsoft.Json; using Newtonsoft.Json.Linq; @@ -31,12 +30,11 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.Test.DSC /// /// Tests for class. /// - [TestClass] public class DscExtensionSettingsSerializerTests { - [TestMethod] - [TestCategory(Category.BVT)] - public void TestPSCredential() + [Fact] + [Trait(Category.AcceptanceType, Category.BVT)] + public void TestPsCredential() { const string userName = "user"; const string password = "password"; @@ -47,30 +45,30 @@ public void TestPSCredential() DscPrivateSettings privateSettings; var publicSettings = GetPublicPrivateAfterDeseriazlization(configurationArguments, out privateSettings); - Assert.AreEqual(1, publicSettings.Properties.Count()); - Assert.AreEqual(credentialParameterName, publicSettings.Properties[0].Name); - Assert.AreEqual(typeof(PSCredential).ToString(), publicSettings.Properties[0].TypeName); - var deserializedPSCredential = publicSettings.Properties[0].Value as JObject; - Assert.IsNotNull(deserializedPSCredential); + Assert.Equal(1, publicSettings.Properties.Count()); + Assert.Equal(credentialParameterName, publicSettings.Properties[0].Name); + Assert.Equal(typeof(PSCredential).ToString(), publicSettings.Properties[0].TypeName); + var deserializedPsCredential = publicSettings.Properties[0].Value as JObject; + Assert.NotNull(deserializedPsCredential); - Assert.AreEqual(userName, deserializedPSCredential["UserName"]); - string passwordRef = deserializedPSCredential["Password"].ToString(); - Assert.IsNotNull(passwordRef); + Assert.Equal(userName, deserializedPsCredential["UserName"]); + string passwordRef = deserializedPsCredential["Password"].ToString(); + Assert.NotNull(passwordRef); - Assert.IsTrue(passwordRef.StartsWith("PrivateSettingsRef:")); + Assert.True(passwordRef.StartsWith("PrivateSettingsRef:")); passwordRef = passwordRef.Substring("PrivateSettingsRef:".Length); - Assert.AreEqual(1, privateSettings.Items.Count); + Assert.Equal(1, privateSettings.Items.Count); // There is only one, so it's fine to check it in foreach. foreach (DictionaryEntry argument in privateSettings.Items) { - Assert.AreEqual(password, argument.Value); - Assert.AreEqual(passwordRef, argument.Key); + Assert.Equal(password, argument.Value); + Assert.Equal(passwordRef, argument.Key); } } - [TestMethod] - [TestCategory(Category.BVT)] + [Fact] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestString() { const string arg = "argument"; @@ -81,15 +79,15 @@ public void TestString() DscPrivateSettings privateSettings; var publicSettings = GetPublicPrivateAfterDeseriazlization(configurationArguments, out privateSettings); - Assert.AreEqual(1, publicSettings.Properties.Count()); - Assert.AreEqual(arg, publicSettings.Properties[0].Name); - Assert.AreEqual(typeof(string).ToString(), publicSettings.Properties[0].TypeName); + Assert.Equal(1, publicSettings.Properties.Count()); + Assert.Equal(arg, publicSettings.Properties[0].Name); + Assert.Equal(typeof(string).ToString(), publicSettings.Properties[0].TypeName); var deserializedValue = publicSettings.Properties[0].Value; - Assert.AreEqual(value, deserializedValue); + Assert.Equal(value, deserializedValue); } - [TestMethod] - [TestCategory(Category.BVT)] + [Fact] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestInt() { const string arg = "argument"; @@ -100,34 +98,33 @@ public void TestInt() DscPrivateSettings privateSettings; var publicSettings = GetPublicPrivateAfterDeseriazlization(configurationArguments, out privateSettings); - Assert.AreEqual(1, publicSettings.Properties.Count()); - Assert.AreEqual(arg, publicSettings.Properties[0].Name); - Assert.AreEqual(typeof(int).ToString(), publicSettings.Properties[0].TypeName); + Assert.Equal(1, publicSettings.Properties.Count()); + Assert.Equal(arg, publicSettings.Properties[0].Name); + Assert.Equal(typeof(int).ToString(), publicSettings.Properties[0].TypeName); var deserializedValue = publicSettings.Properties[0].Value; - Assert.AreEqual(value.ToString(), deserializedValue.ToString()); + Assert.Equal(value.ToString(CultureInfo.InvariantCulture), deserializedValue.ToString()); } - [TestMethod] - [TestCategory(Category.BVT)] + [Fact] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestBool() { const string arg = "argument"; - var value = true; - Hashtable configurationArguments = new Hashtable(); - configurationArguments.Add(arg, value); + const bool value = true; + var configurationArguments = new Hashtable {{arg, true}}; DscPrivateSettings privateSettings; var publicSettings = GetPublicPrivateAfterDeseriazlization(configurationArguments, out privateSettings); - Assert.AreEqual(1, publicSettings.Properties.Count()); - Assert.AreEqual(arg, publicSettings.Properties[0].Name); - Assert.AreEqual(typeof(bool).ToString(), publicSettings.Properties[0].TypeName); + Assert.Equal(1, publicSettings.Properties.Count()); + Assert.Equal(arg, publicSettings.Properties[0].Name); + Assert.Equal(typeof(bool).ToString(), publicSettings.Properties[0].TypeName); var deserializedValue = publicSettings.Properties[0].Value; - Assert.AreEqual(value, deserializedValue); + Assert.Equal(value, deserializedValue); } - [TestMethod] - [TestCategory(Category.BVT)] + [Fact] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestChar() { const string arg = "argument"; @@ -138,11 +135,11 @@ public void TestChar() DscPrivateSettings privateSettings; var publicSettings = GetPublicPrivateAfterDeseriazlization(configurationArguments, out privateSettings); - Assert.AreEqual(1, publicSettings.Properties.Count()); - Assert.AreEqual(arg, publicSettings.Properties[0].Name); - Assert.AreEqual(typeof(char).ToString(), publicSettings.Properties[0].TypeName); + Assert.Equal(1, publicSettings.Properties.Count()); + Assert.Equal(arg, publicSettings.Properties[0].Name); + Assert.Equal(typeof(char).ToString(), publicSettings.Properties[0].TypeName); var deserializedValue = publicSettings.Properties[0].Value; - Assert.AreEqual(value.ToString(), deserializedValue.ToString()); + Assert.Equal(value.ToString(CultureInfo.InvariantCulture), deserializedValue.ToString()); } /// @@ -186,7 +183,6 @@ static private SecureString String2SecureString(string s) return secureString; } - /// /// We use this method for test purposes only. /// diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Resources/DSC/Configurations/VisualStudio.ps1 b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Resources/DSC/Configurations/VisualStudio.ps1 index 0d81eeeb8794..30aae3f66267 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Resources/DSC/Configurations/VisualStudio.ps1 +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Resources/DSC/Configurations/VisualStudio.ps1 @@ -14,7 +14,7 @@ Configuration VisualStudio { - Import-DscResource -Module xPSDesiredStateConfiguration + Import-DscResource -ModuleName xPSDesiredStateConfiguration Node localhost { xPackage VS { diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj index 32cde03efdf8..3dfdff004c83 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj @@ -193,7 +193,6 @@ - @@ -215,15 +214,12 @@ - - - From 158770e79c05c717f229499662542a095645cf05 Mon Sep 17 00:00:00 2001 From: Esha Parmar Date: Mon, 11 May 2015 10:07:28 -0700 Subject: [PATCH 15/40] changed the test category to BVT --- ...xtensionConfigurationParsingHelperTests.cs | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionConfigurationParsingHelperTests.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionConfigurationParsingHelperTests.cs index f45376876559..4f570635d7d0 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionConfigurationParsingHelperTests.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/DSC/DscExtensionConfigurationParsingHelperTests.cs @@ -71,7 +71,7 @@ public DscExtensionConfigurationParsingHelperTests() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestGetModuleNameForDscResourceXComputer() { string moduleName = ConfigurationParsingHelper.GetModuleNameForDscResource("MSFT_xComputer"); @@ -79,7 +79,7 @@ public void TestGetModuleNameForDscResourceXComputer() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestGetModuleNameForDscResourceXadDomain() { string moduleName = ConfigurationParsingHelper.GetModuleNameForDscResource("MSFT_xADDomain"); @@ -87,7 +87,7 @@ public void TestGetModuleNameForDscResourceXadDomain() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestExtractConfigurationNames1() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(CorporateClientConfigurationPath); @@ -97,7 +97,7 @@ public void TestExtractConfigurationNames1() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestExtractConfigurationNames2() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(DomainControllerConfigurationPath); @@ -108,7 +108,7 @@ public void TestExtractConfigurationNames2() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestExtractConfigurationNames3() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(VisualStudioPath); @@ -118,7 +118,7 @@ public void TestExtractConfigurationNames3() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestExtractConfigurationNamesMulti() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ShMulptiConfigurationsPath); @@ -130,7 +130,7 @@ public void TestExtractConfigurationNamesMulti() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestNameImportListInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameImportListInsideNodeConfigurationPath); @@ -141,7 +141,7 @@ public void TestNameImportListInsideNode() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestNameImportListOutsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameImportListOutsideNodeConfigurationPath); @@ -152,7 +152,7 @@ public void TestNameImportListOutsideNode() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestNameImportSingleInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameImportSingleInsideNodeConfigurationPath); @@ -162,7 +162,7 @@ public void TestNameImportSingleInsideNode() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestNameImportSingleOutsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameImportSingleOutsideNodeConfigurationPath); @@ -172,7 +172,7 @@ public void TestNameImportSingleOutsideNode() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestNameModuleImportSingleInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(NameModuleImportSingleInsideNodeConfigurationPath); @@ -182,7 +182,7 @@ public void TestNameModuleImportSingleInsideNode() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestModuleImportListInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ModuleImportListInsideNodeConfigurationPath); @@ -193,7 +193,7 @@ public void TestModuleImportListInsideNode() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestModuleImportListOutsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ModuleImportListOutsideNodeConfigurationPath); @@ -204,7 +204,7 @@ public void TestModuleImportListOutsideNode() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestModuleImportSingleInsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ModuleImportSingleInsideNodeConfigurationPath); @@ -214,7 +214,7 @@ public void TestModuleImportSingleInsideNode() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestModuleImportSingleOutsideNode() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(ModuleImportSingleOutsideNodeConfigurationPath); @@ -224,7 +224,7 @@ public void TestModuleImportSingleOutsideNode() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestIeeScGood() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(IeeScGoodConfigurationPath); @@ -234,7 +234,7 @@ public void TestIeeScGood() } [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] public void TestIeeScBad() { ConfigurationParseResult results = ConfigurationParsingHelper.ParseConfiguration(IeeScBadConfigurationPath); From a967e48a8ca4fd60e92c6ef5f6b1ddd7fd3398c2 Mon Sep 17 00:00:00 2001 From: huangpf Date: Mon, 11 May 2015 17:55:32 -0700 Subject: [PATCH 16/40] update model classes --- .../Commands.Compute/Commands.Compute.csproj | 2 +- .../Models/PSAvailabilitySet.cs | 39 +++++++++++---- .../{PSOperationContext.cs => PSOperation.cs} | 21 +++++--- .../Commands.Compute/Models/PSUsage.cs | 28 +++++++---- .../Models/PSVirtualMachine.cs | 49 +++++++++++++------ .../Models/PSVirtualMachineExtensionImage.cs | 2 +- .../Models/PSVirtualMachineImage.cs | 2 +- .../Models/PSVirtualMachineImageResource.cs | 26 ++++++---- .../Models/PSVirtualMachineSize.cs | 32 +++++++----- 9 files changed, 135 insertions(+), 66 deletions(-) rename src/ResourceManager/Compute/Commands.Compute/Models/{PSOperationContext.cs => PSOperation.cs} (63%) diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 1e1cf1482139..df1baf9fa008 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -164,6 +164,7 @@ + @@ -176,7 +177,6 @@ - diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSAvailabilitySet.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSAvailabilitySet.cs index 0968c90d9e46..fff3ff37cbed 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSAvailabilitySet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSAvailabilitySet.cs @@ -1,25 +1,44 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 +// // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// // See the License for the specific language governing permissions and // limitations under the License. -// ---------------------------------------------------------------------------------- +// + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. using Microsoft.Azure.Management.Compute.Models; using Newtonsoft.Json; using System.Collections.Generic; +using System.Text.RegularExpressions; namespace Microsoft.Azure.Commands.Compute.Models { - public class PSAvailabilitySet + public class PSAvailabilitySet : PSOperation { + // Gets or sets the property of 'ResourceGroupName' + public string ResourceGroupName + { + get + { + Regex r = new Regex(@"(.*?)/resourcegroups/(?\S+)/providers/(.*?)", RegexOptions.IgnoreCase); + Match m = r.Match(Id); + return m.Success ? m.Groups["rgname"].Value : null; + } + } + // Gets or sets the property of 'Id' public string Id { get; set; } @@ -41,13 +60,13 @@ public string TagsText get { return JsonConvert.SerializeObject(Tags, Formatting.Indented); } } - // Gets or sets the property of 'PlatformFaultDomainCount' + // Gets or sets Fault Domain count. public int? PlatformFaultDomainCount { get; set; } - // Gets or sets the property of 'PlatformUpdateDomainCount' + // Gets or sets Update Domain count. public int? PlatformUpdateDomainCount { get; set; } - // Gets or sets the property of 'Statuses' + // Gets or sets the resource status information. public IList Statuses { get; set; } [JsonIgnore] @@ -56,7 +75,7 @@ public string StatusesText get { return JsonConvert.SerializeObject(Statuses, Formatting.Indented); } } - // Gets or sets the property of 'VirtualMachinesReferences' + // Gets or sets a list containing reference to all Virtual Machines created under this Availability Set. public IList VirtualMachinesReferences { get; set; } [JsonIgnore] diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSOperationContext.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSOperation.cs similarity index 63% rename from src/ResourceManager/Compute/Commands.Compute/Models/PSOperationContext.cs rename to src/ResourceManager/Compute/Commands.Compute/Models/PSOperation.cs index ea0b67f93da7..1de5f5e246dc 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSOperationContext.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSOperation.cs @@ -1,22 +1,29 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 +// // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// // See the License for the specific language governing permissions and // limitations under the License. -// ---------------------------------------------------------------------------------- +// + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. using System.Net; -namespace Microsoft.Azure.Commands.Compute.Models +namespace Microsoft.Azure.Commands.Compute { - public class PSOperationContext + public class PSOperation { public string RequestId { get; set; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSUsage.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSUsage.cs index 2f26bb0d75cf..426c4fe374e8 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSUsage.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSUsage.cs @@ -1,32 +1,40 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 +// // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// // See the License for the specific language governing permissions and // limitations under the License. -// ---------------------------------------------------------------------------------- +// + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. using Microsoft.Azure.Management.Compute.Models; using Newtonsoft.Json; using System.Collections.Generic; +using System.Text.RegularExpressions; namespace Microsoft.Azure.Commands.Compute.Models { - public class PSUsage + public class PSUsage : PSOperation { - // Gets or sets the property of 'CurrentValue' + // Gets or sets the current value of the usage. public int CurrentValue { get; set; } - // Gets or sets the property of 'Limit' + // Gets or sets the limit of usage. public uint Limit { get; set; } - // Gets or sets the property of 'Name' + // Gets or sets the name of the type of usage. public UsageName Name { get; set; } [JsonIgnore] @@ -35,7 +43,7 @@ public string NameText get { return JsonConvert.SerializeObject(Name, Formatting.Indented); } } - // Gets or sets the property of 'Unit' + // Gets or sets an enum describing the unit of measurement. public UsageUnit Unit { get; set; } [JsonIgnore] diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs index 6d9701dc4c96..ad992f937933 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs @@ -1,25 +1,44 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 +// // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// // See the License for the specific language governing permissions and // limitations under the License. -// ---------------------------------------------------------------------------------- +// + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. using Microsoft.Azure.Management.Compute.Models; using Newtonsoft.Json; using System.Collections.Generic; +using System.Text.RegularExpressions; namespace Microsoft.Azure.Commands.Compute.Models { - public class PSVirtualMachine + public class PSVirtualMachine : PSOperation { + // Gets or sets the property of 'ResourceGroupName' + public string ResourceGroupName + { + get + { + Regex r = new Regex(@"(.*?)/resourcegroups/(?\S+)/providers/(.*?)", RegexOptions.IgnoreCase); + Match m = r.Match(Id); + return m.Success ? m.Groups["rgname"].Value : null; + } + } + // Gets or sets the property of 'Id' public string Id { get; set; } @@ -41,7 +60,7 @@ public string TagsText get { return JsonConvert.SerializeObject(Tags, Formatting.Indented); } } - // Gets or sets the property of 'AvailabilitySetReference' + // Gets or sets the reference Id of the availailbity set to which this virtual machine belongs. public AvailabilitySetReference AvailabilitySetReference { get; set; } [JsonIgnore] @@ -50,7 +69,7 @@ public string AvailabilitySetReferenceText get { return JsonConvert.SerializeObject(AvailabilitySetReference, Formatting.Indented); } } - // Gets or sets the property of 'Extensions' + // Gets the virtual machine child extension resources. public IList Extensions { get; set; } [JsonIgnore] @@ -59,7 +78,7 @@ public string ExtensionsText get { return JsonConvert.SerializeObject(Extensions, Formatting.Indented); } } - // Gets or sets the property of 'HardwareProfile' + // Gets or sets the hardware profile. public HardwareProfile HardwareProfile { get; set; } [JsonIgnore] @@ -68,7 +87,7 @@ public string HardwareProfileText get { return JsonConvert.SerializeObject(HardwareProfile, Formatting.Indented); } } - // Gets or sets the property of 'InstanceView' + // Gets the virtual machine instance view. public VirtualMachineInstanceView InstanceView { get; set; } [JsonIgnore] @@ -77,7 +96,7 @@ public string InstanceViewText get { return JsonConvert.SerializeObject(InstanceView, Formatting.Indented); } } - // Gets or sets the property of 'NetworkProfile' + // Gets or sets the network profile. public NetworkProfile NetworkProfile { get; set; } [JsonIgnore] @@ -86,7 +105,7 @@ public string NetworkProfileText get { return JsonConvert.SerializeObject(NetworkProfile, Formatting.Indented); } } - // Gets or sets the property of 'OSProfile' + // Gets or sets the OS profile. public OSProfile OSProfile { get; set; } [JsonIgnore] @@ -95,7 +114,7 @@ public string OSProfileText get { return JsonConvert.SerializeObject(OSProfile, Formatting.Indented); } } - // Gets or sets the property of 'Plan' + // Gets or sets the purchase plan when deploying virtual machine from VM Marketplace images. public Plan Plan { get; set; } [JsonIgnore] @@ -104,10 +123,10 @@ public string PlanText get { return JsonConvert.SerializeObject(Plan, Formatting.Indented); } } - // Gets or sets the property of 'ProvisioningState' + // Gets or sets the provisioning state, which only appears in the response. public string ProvisioningState { get; set; } - // Gets or sets the property of 'StorageProfile' + // Gets or sets the storage profile. public StorageProfile StorageProfile { get; set; } [JsonIgnore] diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImage.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImage.cs index 590267ee958f..61ddfa5040a1 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImage.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImage.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Commands.Compute.Models { - public class PSVirtualMachineExtensionImage : PSOperationContext + public class PSVirtualMachineExtensionImage : PSOperation { public string Id { get; set; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImage.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImage.cs index 04264390b164..7687533ce7e3 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImage.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImage.cs @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Commands.Compute.Models { - public class PSVirtualMachineImageBase : PSOperationContext + public class PSVirtualMachineImageBase : PSOperation { public string Id { get; set; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImageResource.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImageResource.cs index 070932482f5d..fe108b57e964 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImageResource.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImageResource.cs @@ -1,32 +1,40 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 +// // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// // See the License for the specific language governing permissions and // limitations under the License. -// ---------------------------------------------------------------------------------- +// + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. using Microsoft.Azure.Management.Compute.Models; using Newtonsoft.Json; using System.Collections.Generic; +using System.Text.RegularExpressions; namespace Microsoft.Azure.Commands.Compute.Models { - public class PSVirtualMachineImageResource + public class PSVirtualMachineImageResource : PSOperation { - // Gets or sets the property of 'Id' + // Gets or sets the ID of the artifact. public string Id { get; set; } - // Gets or sets the property of 'Location' + // Gets or sets the location of the resource. public string Location { get; set; } - // Gets or sets the property of 'Name' + // Gets or sets the name of the resource. public string Name { get; set; } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineSize.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineSize.cs index dbfb19272db2..63f1a5e212e2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineSize.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineSize.cs @@ -1,41 +1,49 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 +// // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// // See the License for the specific language governing permissions and // limitations under the License. -// ---------------------------------------------------------------------------------- +// + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. using Microsoft.Azure.Management.Compute.Models; using Newtonsoft.Json; using System.Collections.Generic; +using System.Text.RegularExpressions; namespace Microsoft.Azure.Commands.Compute.Models { - public class PSVirtualMachineSize + public class PSVirtualMachineSize : PSOperation { - // Gets or sets the property of 'MaxDataDiskCount' + // Gets or sets the Maximum number of data disks allowed by a VM size. public int? MaxDataDiskCount { get; set; } - // Gets or sets the property of 'MemoryInMB' + // Gets or sets the Memory size supported by a VM size. public int MemoryInMB { get; set; } - // Gets or sets the property of 'Name' + // Gets or sets the VM size name. public string Name { get; set; } - // Gets or sets the property of 'NumberOfCores' + // Gets or sets the Number of cores supported by a VM size. public int NumberOfCores { get; set; } - // Gets or sets the property of 'OSDiskSizeInMB' + // Gets or sets the OS disk size allowed by a VM size. public int OSDiskSizeInMB { get; set; } - // Gets or sets the property of 'ResourceDiskSizeInMB' + // Gets or sets the Resource disk size allowed by a VM size. public int ResourceDiskSizeInMB { get; set; } } } From b99edf463813d658ebf6e19988f0c90ee7fd2810 Mon Sep 17 00:00:00 2001 From: huangpf Date: Mon, 11 May 2015 23:34:58 -0700 Subject: [PATCH 17/40] update --- ...osoft.Azure.Commands.Compute.format.ps1xml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml index 5b3712ce739c..e5d31fb83a4f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml +++ b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml @@ -1,4 +1,26 @@  + @@ -10,6 +32,10 @@ + + + ResourceGroupName + Id @@ -128,6 +154,10 @@ + + + ResourceGroupName + Id From 3eb2516537acf75162ffbbe7510a5ed8b03aaf24 Mon Sep 17 00:00:00 2001 From: adamkr Date: Wed, 13 May 2015 09:38:41 -0700 Subject: [PATCH 18/40] Fixing Set-AzureSqlDatabase when targetting a v11 server through the ARM endpoint. --- .../Database/Cmdlet/SetAzureSqlDatabase.cs | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs index c4de06a2085a..6c2793306327 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; @@ -116,8 +117,21 @@ protected override IEnumerable ApplyUserInputToModel(IEnu /// The input entity protected override IEnumerable PersistChanges(IEnumerable entity) { + AzureSqlDatabaseModel response = null; + try + { + response = ModelAdapter.UpsertDatabase(this.ResourceGroupName, this.ServerName, entity.First()); + } + catch(ArgumentNullException ex) + { + if(ex.ParamName == "operationStatusLink") + { + response = ModelAdapter.GetDatabase(this.ResourceGroupName, this.ServerName, entity.First().DatabaseName); + } + } + return new List() { - ModelAdapter.UpsertDatabase(this.ResourceGroupName, this.ServerName, entity.First()) + response }; } } From 1f0475b6b3eb29526ca8e58d9d61fbe71a10f72b Mon Sep 17 00:00:00 2001 From: Divya Gupta Date: Tue, 5 May 2015 11:18:09 -0700 Subject: [PATCH 19/40] Key Vault cmdlet bug fix for GitHub issues 368, 378 --- .../Commands.KeyVault.Test.csproj | 52 +- .../ScenarioTests/KeyVaultManagementTests.cs | 50 +- .../ScenarioTests/KeyVaultManagementTests.ps1 | 42 +- .../ScenarioTests/KeyVaultTestFixture.cs | 4 +- .../TestCreateDeleteVaultWithPiping.json | 156 ++-- ...teNewPremiumVaultEnabledForDeployment.json | 92 +-- .../TestCreateNewVault.json | 108 +-- .../TestCreateVaultInUnknownResGrpFails.json | 72 +- .../TestCreateVaultPositionalParams.json | 88 +- .../TestDeleteUnknownVaultFails.json | 30 +- .../TestDeleteVaultByName.json | 216 ++--- .../TestGetUnknownVaultFails.json | 26 +- .../TestGetVaultByName.json | 48 +- .../TestGetVaultByNameAndResourceGroup.json | 30 +- ...yNameAndResourceGroupPositionalParams.json | 28 +- ...GetVaultFromUnknownResourceGroupFails.json | 30 +- .../TestListAllVaultsInSubscription.json | 28 +- .../TestListVaultsByResourceGroup.json | 28 +- .../TestListVaultsByTag.json | 28 +- ...ListVaultsByUnknownResourceGroupFails.json | 28 +- .../TestModifyAccessPolicy.json | 460 +++++------ ...odifyAccessPolicyEnabledForDeployment.json | 770 ++++++++++++++++++ .../TestModifyAccessPolicyNegativeCases.json | 534 ++++++++++++ .../TestRecreateVaultFails.json | 32 +- ...veNonExistentAccessPolicyDoesNotThrow.json | 68 +- .../TestSetAccessPolicyNegativeCases.json | 404 --------- .../TestSetRemoveAccessPolicyByObjectId.json | 546 +++++++++++++ .../TestSetRemoveAccessPolicyBySPN.json | 236 +++--- .../TestSetRemoveAccessPolicyByUPN.json | 166 ++-- .../Commands/NewAzureKeyVault.cs | 2 +- .../Commands/RemoveAzureKeyVault.cs | 3 +- .../RemoveAzureKeyVaultAccessPolicy.cs | 19 +- .../Commands/SetAzureKeyVaultAccessPolicy.cs | 2 +- .../Models/KeyVaultManagementCmdletBase.cs | 23 +- .../Models/VaultManagementClient.cs | 10 +- 35 files changed, 3002 insertions(+), 1457 deletions(-) create mode 100644 src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyEnabledForDeployment.json create mode 100644 src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json delete mode 100644 src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetAccessPolicyNegativeCases.json create mode 100644 src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByObjectId.json diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj index bf28bf36e07d..5e0896dd5ccf 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj @@ -167,70 +167,76 @@ Always - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest + + + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest - - Always + + PreserveNewest + + + PreserveNewest - Always + PreserveNewest - Always + PreserveNewest diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs index eca978752e9c..944129b7453a 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs @@ -282,6 +282,28 @@ public void TestDeleteUnknownVaultFails() #endregion #region Set-AzureKeyVaultAccessPolicy & Remove-AzureKeyVaultAccessPolicy + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSetRemoveAccessPolicyByObjectId() + { + string upn = ""; + data.ResetPreCreatedVault(); + KeyVaultManagementController.NewInstance.RunPsTestWorkflow( + () => + { + return new[] { string.Format("{0} {1} {2} {3}", "Test-SetRemoveAccessPolicyByObjectId", data.preCreatedVault, data.resourceGroupName, upn) }; + }, + (env) => + { + Initialize(); + upn = GetUser(env.GetTestEnvironment()); + }, + null, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName() + ); + } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] @@ -367,7 +389,31 @@ public void TestModifyAccessPolicy() [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestSetAccessPolicyNegativeCases() + public void TestModifyAccessPolicyEnabledForDeployment() + { + string upn = ""; + + data.ResetPreCreatedVault(); + KeyVaultManagementController.NewInstance.RunPsTestWorkflow( + () => + { + return new[] { string.Format("{0} {1} {2} {3}", "Test-ModifyAccessPolicyEnabledForDeployment", data.preCreatedVault, data.resourceGroupName, upn) }; + }, + (env) => + { + Initialize(); + upn = GetUser(env.GetTestEnvironment()); + }, + null, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName() + ); + } + + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestModifyAccessPolicyNegativeCases() { string upn = ""; @@ -375,7 +421,7 @@ public void TestSetAccessPolicyNegativeCases() KeyVaultManagementController.NewInstance.RunPsTestWorkflow( () => { - return new[] { string.Format("{0} {1} {2} {3}", "Test-SetAccessPolicyNegativeCases", data.preCreatedVault, data.resourceGroupName, upn) }; + return new[] { string.Format("{0} {1} {2} {3}", "Test-ModifyAccessPolicyNegativeCases", data.preCreatedVault, data.resourceGroupName, upn) }; }, (env) => { diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.ps1 b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.ps1 index 178a2951fe96..eccb4b43cd94 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.ps1 +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.ps1 @@ -330,7 +330,38 @@ function Test-ModifyAccessPolicy Assert-AreEqual 0 $vault.AccessPolicies.Count } -function Test-SetAccessPolicyNegativeCases +function Test-ModifyAccessPolicyEnabledForDeployment +{ + Param($existingVaultName, $rgName, $upn) + $vault = Get-AzureKeyVault -VaultName $existingVaultName -ResourceGroupName $rgName + Assert-NotNull $vault + Assert-AreEqual 0 $vault.AccessPolicies.Count + Assert-AreEqual $false $vault.EnabledForDeployment + + # Set and Remove EnabledForDeployment, without any other permissions + $vault = Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -EnabledForDeployment -PassThru + Assert-NotNull $vault + Assert-AreEqual 0 $vault.AccessPolicies.Count + Assert-AreEqual $true $vault.EnabledForDeployment + + $vault = Remove-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -EnabledForDeployment -PassThru + Assert-NotNull $vault + Assert-AreEqual 0 $vault.AccessPolicies.Count + Assert-AreEqual $false $vault.EnabledForDeployment + + # Set and Remove EnabledForDeployment, with other permissions + $PermToKeys = @("encrypt", "decrypt", "unwrapKey", "wrapKey", "verify", "sign", "get", "list", "update", "create", "import", "delete", "backup", "restore") + $PermToSecrets = @("get", "list", "set", "delete") + $vault = Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -EnabledForDeployment -UPN $upn -PermissionsToKeys $PermToKeys -PermissionsToSecrets $PermToSecrets -PassThru + CheckVaultAccessPolicy $vault $PermToKeys $PermToSecrets + Assert-AreEqual $true $vault.EnabledForDeployment + + $vault = Remove-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -EnabledForDeployment -ObjectId $vault.AccessPolicies[0].ObjectId -PassThru + Assert-AreEqual 0 $vault.AccessPolicies.Count + Assert-AreEqual $false $vault.EnabledForDeployment +} + +function Test-ModifyAccessPolicyNegativeCases { Param($existingVaultName, $rgName, $upn) @@ -340,6 +371,15 @@ function Test-SetAccessPolicyNegativeCases # random string in perms Assert-Throws { Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -UserPrincipalName $upn -PermissionsToSecrets blah, get } + + # invalid set of params + Assert-Throws { Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName } + Assert-Throws { Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName } + Assert-Throws { Remove-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName } + Assert-Throws { Remove-AzureKeyVaultAccessPolicy -VaultName $existingVaultName } + Assert-Throws { Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -UserPrincipalName $upn } + Assert-Throws { Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -SPN $upn } + Assert-Throws { Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $upn } } function Test-RemoveNonExistentAccessPolicyDoesNotThrow diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs index 602b2c3ddb36..b34ff9b3c7b1 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs @@ -87,7 +87,7 @@ private VaultGetResponse CreateVault(KeyVaultManagementClient mgmtClient, string Tags = new Dictionary { { tagName, tagValue } }, Properties = new VaultProperties { - EnabledForDeployment = true, + EnabledForDeployment = false, Sku = new Sku { Family = "A", Name = "Premium" }, TenantId = Guid.Parse(tenantId), VaultUri = "", @@ -122,7 +122,7 @@ public void ResetPreCreatedVault() Tags = new Dictionary { { tagName, tagValue } }, Properties = new VaultProperties { - EnabledForDeployment = true, + EnabledForDeployment = false, Sku = new Sku { Family = "A", Name = "Premium" }, TenantId = tenantId, VaultUri = "", diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateDeleteVaultWithPiping.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateDeleteVaultWithPiping.json index b4ebe7e9845c..41dc0a972fa1 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateDeleteVaultWithPiping.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateDeleteVaultWithPiping.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourcegroups/pshtestrg1197/providers/Microsoft.KeyVault//vaults/onesdk8768?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlZ3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL29uZXNkazg3Njg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "4506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-request-id": [ - "2fccdf90-7a10-4c37-b0d0-26afce2be5e7" + "7cd214d0-3fbb-4659-ad6f-d1edefe51650" ], "x-ms-correlation-request-id": [ - "2fccdf90-7a10-4c37-b0d0-26afce2be5e7" + "7cd214d0-3fbb-4659-ad6f-d1edefe51650" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040403Z:2fccdf90-7a10-4c37-b0d0-26afce2be5e7" + "WESTUS:20150513T194702Z:7cd214d0-3fbb-4659-ad6f-d1edefe51650" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:04:02 GMT" + "Wed, 13 May 2015 19:47:02 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "JOcOImGbsHySgKlAQbtemgj5KuX+mrNNzouN4cLWfY8=" ], "request-id": [ - "2c171c3f-e45e-44f5-930c-6048cb9f0361" + "42d0a7b2-d64f-4efa-8677-79ebbc575cf7" ], "client-request-id": [ - "82a718c3-13ad-4e78-8db6-c6ba7457db4d" + "9a08583f-1cbb-4d6f-bd27-100bf55c31d2" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "aGsc4TnrOCWqtMLbMcbR-RgYdIlXYh3FMMWX4bJKMkzI4LAyStO3JMDMCu9kgCfvKJKlBQZUe3zbudchpoimtND_vPsIfiNqGdWU5Tvo0YRIdziXjBuOiut-p97Q1XV8G2GnqooEwc7ZDfJXeBNqyw.FllY6P9avLBsFJ0p-vEhspmGRssS2184WQqvt_wZXy0" + "bpI8uFmH-RreoNzaLICuwS29zwjlTaFvArm7wL_J9RbA9HS4RSHE7h64X_GH8AL4b5Lbec1qV4go8Yx9CDrsmt3LLsGITskm13l0S_d-Fltf01MZjzEk3GvWmCVF5WoS.UHIPlaaNujfov4G4Zlm8qDrSrrY8YWToZJeuUi3P0fQ" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:04:02 GMT" + "Wed, 13 May 2015 19:47:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk8768?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODc2OD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODMwND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -134,10 +134,10 @@ "724" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk8768\",\r\n \"name\": \"onesdk8768\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk8768.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304\",\r\n \"name\": \"onesdk8304\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk8304.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "642" @@ -155,22 +155,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-request-id": [ - "c84fd951-302d-4f63-8071-15638ecf3655" + "9e2d3eca-ac43-4cf7-a043-8a987e5a2c19" ], "x-ms-correlation-request-id": [ - "c84fd951-302d-4f63-8071-15638ecf3655" + "9e2d3eca-ac43-4cf7-a043-8a987e5a2c19" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040411Z:c84fd951-302d-4f63-8071-15638ecf3655" + "WESTUS:20150513T194709Z:9e2d3eca-ac43-4cf7-a043-8a987e5a2c19" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:04:10 GMT" + "Wed, 13 May 2015 19:47:08 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -185,8 +185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -194,10 +194,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -209,13 +209,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "30icSeY/bVr9Xoytdat1AuqgYDoWTl+qNMdr2ZkR20g=" + "iuPmgCujsBOHP5ZHyhzOWZQ0FRP7jUfzbegvNsa5PFc=" ], "request-id": [ - "5b17a2c6-7d6a-401f-b25b-37892749413b" + "126e792d-c1da-40fe-91e1-03bbef1b0eda" ], "client-request-id": [ - "70b541e1-ce95-4652-ab16-692af83f8286" + "452db66e-f3bf-4a2f-b060-146c65ddfc6b" ], "x-ms-gateway-rewrite": [ "false" @@ -224,7 +224,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "-GHrnDdA8X9pRRMtIaxr64nOtGETnBqYgvLWFn6LJBZI6XXo93ovJ6hYfGRZTRzHfURBGfU0zPknZLBzH8zAUY4kpjmXuWieDo6mxBteFOo2G8ZYfrhgX8ouF26X4uhWF8vrxLIYrmZKpEr3EiYXEg.g5sYTMaHczgXzM20_wQ2s94w2vK4rfkjON-sbWULxM0" + "Bl72YXYsFNRfvvpGin79UFc71lPP_l1B7NofpVhaHm0g29iCd4X-aho1sofXsB4Hsq37iHusASOCOnX8EKQY-rdfmwjCpUpTpF51Wsyjn6TYYa4stylbCDttKd_7U0Gj.8CXzqffpFRnAFE9TnZMw8OJDR4U8Fr48hf0tPL2hLvU" ], "X-Content-Type-Options": [ "nosniff" @@ -252,14 +252,14 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:04:12 GMT" + "Wed, 13 May 2015 19:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -267,10 +267,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" + "30icSeY/bVr9Xoytdat1AuqgYDoWTl+qNMdr2ZkR20g=" ], "request-id": [ - "662705b6-99bd-4301-b022-5684033a2b12" + "78a5831d-42cf-42a4-a761-615dde48ae7d" ], "client-request-id": [ - "57b2d17a-fd9b-4de6-a52f-37bc1bfb89bc" + "294da5a2-4185-4ef8-9bbc-c4a19d540afe" ], "x-ms-gateway-rewrite": [ "false" @@ -297,7 +297,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "RoXgPEga4BPJ0y5A7-hAPLoCd8Xj5tNdP-a4wCq_F4UhBWYXz6uVAwpH-gsT71BG6CEuWlmWxN_HPNgTsiUBvA8fpUSJWgbmSUrExmC6KpmGnbtQT6Navf8AQZ7WTiIWiQRZc7GjPdJZxEDueovN0Q.pietw4M-Z3npYdDT73eJdQ4XzB1IzeWLGSsU5YtsMws" + "TFWoJth4HCYqemu9WlXuLF4YhEhJ5hl2jha2ebNH5bx3maAjuZ5_gLJwvciY-fBStd1N71LAPfZKpK8k-oq9HQ_vVfjzKZi8b-B-rQZzOr2zKglQxniCe5kYjB5hyyh9.v-6gT7tkW3a5XixD43goJfC4KEoxHHwpfBU6abGVcJw" ], "X-Content-Type-Options": [ "nosniff" @@ -325,22 +325,22 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:04:12 GMT" + "Wed, 13 May 2015 19:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk8768?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODc2OD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODMwND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk8768\",\r\n \"name\": \"onesdk8768\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk8768.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304\",\r\n \"name\": \"onesdk8304\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk8304.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "643" @@ -358,22 +358,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14998" ], "x-ms-request-id": [ - "b05a3f4f-7cc0-49b6-bfb4-efc7c0e6d0db" + "1c407909-4b01-458a-84d1-09bd13052198" ], "x-ms-correlation-request-id": [ - "b05a3f4f-7cc0-49b6-bfb4-efc7c0e6d0db" + "1c407909-4b01-458a-84d1-09bd13052198" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040411Z:b05a3f4f-7cc0-49b6-bfb4-efc7c0e6d0db" + "WESTUS:20150513T194709Z:1c407909-4b01-458a-84d1-09bd13052198" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:04:11 GMT" + "Wed, 13 May 2015 19:47:09 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -388,13 +388,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk8768?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODc2OD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODMwND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", @@ -415,13 +415,13 @@ "gateway" ], "x-ms-request-id": [ - "096d6533-0bbd-451a-beef-81ec451d9768" + "86a95725-9d13-42a7-adaa-f5f7794fedee" ], "x-ms-correlation-request-id": [ - "096d6533-0bbd-451a-beef-81ec451d9768" + "86a95725-9d13-42a7-adaa-f5f7794fedee" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040414Z:096d6533-0bbd-451a-beef-81ec451d9768" + "WESTUS:20150513T194712Z:86a95725-9d13-42a7-adaa-f5f7794fedee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -430,19 +430,19 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:04:14 GMT" + "Wed, 13 May 2015 19:47:11 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk8768?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODc2OD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODMwND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, "ResponseBody": "", @@ -460,22 +460,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-request-id": [ - "6ed2e5fb-f605-4963-8ec5-a878b41bc1ea" + "105a6dba-65af-454c-97e6-ffcdfad158be" ], "x-ms-correlation-request-id": [ - "6ed2e5fb-f605-4963-8ec5-a878b41bc1ea" + "105a6dba-65af-454c-97e6-ffcdfad158be" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040414Z:6ed2e5fb-f605-4963-8ec5-a878b41bc1ea" + "WESTUS:20150513T194711Z:105a6dba-65af-454c-97e6-ffcdfad158be" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:04:14 GMT" + "Wed, 13 May 2015 19:47:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -492,16 +492,16 @@ ], "Names": { "Test-CreateDeleteVaultWithPiping": [ - "onesdk8768" + "onesdk8304" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewPremiumVaultEnabledForDeployment.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewPremiumVaultEnabledForDeployment.json index 3d0e84c0345b..5af4e2c00560 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewPremiumVaultEnabledForDeployment.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewPremiumVaultEnabledForDeployment.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourcegroups/pshtestrg1197/providers/Microsoft.KeyVault//vaults/onesdk2744?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlZ3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL29uZXNkazI3NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "4987" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" ], "x-ms-request-id": [ - "22e0273c-317a-4dae-a31f-446a315080cb" + "d91aca62-d3a7-4daf-9de7-078362e54ce8" ], "x-ms-correlation-request-id": [ - "22e0273c-317a-4dae-a31f-446a315080cb" + "d91aca62-d3a7-4daf-9de7-078362e54ce8" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035918Z:22e0273c-317a-4dae-a31f-446a315080cb" + "WESTUS:20150513T195607Z:d91aca62-d3a7-4daf-9de7-078362e54ce8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:59:17 GMT" + "Wed, 13 May 2015 19:56:06 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "v3Hm4ryMiUbRFp0SVZWTWdMY+ECaxB3gLqmZMjwf8eQ=" + "F2LOr8r7qijtW7xVmU1aLk3kz6clyv8DNEw2XQfFr2A=" ], "request-id": [ - "ddb9047a-cb0e-4cf6-b5b2-86ecf7bc6be1" + "d92be35e-cab2-4b29-b37f-fa43e63c6b89" ], "client-request-id": [ - "743bbc1a-624c-46cb-9f56-20588c1104f9" + "4556b7d4-0286-42ac-82a5-584bc3056889" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "DXisXUnoNLGS8-50TedAJ0cWY_NmEKRxKzNPRAOFeXN3xMWeNZSz3q5gxsgqkS6t64YsJcdxbuSiv4amUB-BzSk6-HCtWJ9v8G4CrPHdHstfjAOIApEcOiV6AaItNGCE.XR1AnUMUu6nS2EswXL9dIOI0ROsn3-B-O8qH9GSMANU" + "qd2uHtR_cKuZQK470dIDvZEIz9u1HZEHC7UrFm_wDprA-n8Y9-ASFf_EU-ru6YZicf8DFI_6VRnoomPdeBcAch4-X1KFffOAIOnxjJWX8F8_W9fi84syYdfzJeoInI77PoJIwDX2clXxtTfdyWRkcQ.nsJ8xcWuSZ-5c5FiQm9y6hMyP-XZSU8a8y9Xtwu9Flc" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:59:18 GMT" + "Wed, 13 May 2015 19:56:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk2744?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMjc0ND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk284?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMjg0P2FwaS12ZXJzaW9uPTIwMTQtMTItMTktUFJFVklFVw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -134,13 +134,13 @@ "722" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk2744\",\r\n \"name\": \"onesdk2744\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://onesdk2744.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk284\",\r\n \"name\": \"onesdk284\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://onesdk284.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "640" + "637" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,22 +155,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "97647412-49a8-46ba-b327-08ff845ded38" + "c73a051f-e0cd-47ad-ac88-a877624db091" ], "x-ms-correlation-request-id": [ - "97647412-49a8-46ba-b327-08ff845ded38" + "c73a051f-e0cd-47ad-ac88-a877624db091" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035924Z:97647412-49a8-46ba-b327-08ff845ded38" + "WESTUS:20150513T195610Z:c73a051f-e0cd-47ad-ac88-a877624db091" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:59:24 GMT" + "Wed, 13 May 2015 19:56:10 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -185,8 +185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -194,10 +194,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -209,13 +209,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "eTv/+eSXVMnsnytZxi018Ikz5qYWAsHBiTLR3SMW/5s=" + "+3h+Ymp508o5Yv2+joJ0aHNKxLQZErHQiFUCChRGlLo=" ], "request-id": [ - "aa038e02-e208-4a13-855d-7835cd3c5599" + "3ac90849-5fe3-4349-9d33-fe1cbe177fe0" ], "client-request-id": [ - "b6539f09-3c1f-43f0-beda-a1ac3a8d6f76" + "253802a6-8690-4338-b1c1-bc2b23c86d08" ], "x-ms-gateway-rewrite": [ "false" @@ -224,7 +224,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "SVHaOUUVcu7JjgyfruU6MG6zBnA1L9jvA1F1cXih8zaefRtChdmy4xPlkOC4VEi6NnSkENGbMM-hyLR5DlyBCy8TqpHusVFStS6PH7sBZHbQSbLoNuk_GPpxtza3rNSN.ans4SPKIDAjCUSC_M89QH0J6MENT_xzubCBJBe92KqM" + "zSypM5WXdQq0YHq3CTTLZ06gW-FZM1_7G8CU26zxWw8Ob477TavDgB0NdppQk6O92QMWi-G7t2Gy5w7hjS9L4PDwPuvnLhgLVXWYWzIFiXmVlNmL94yWoU_pZpWCIdS8hP8vWm5AwT0rdeDFDAti6A.zUm6OxZd4fePIi6JwxFbMgA9W36_p6DxYXwxdA5a5KA" ], "X-Content-Type-Options": [ "nosniff" @@ -252,7 +252,7 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:59:24 GMT" + "Wed, 13 May 2015 19:56:11 GMT" ] }, "StatusCode": 200 @@ -260,16 +260,16 @@ ], "Names": { "Test-CreateNewPremiumVaultEnabledForDeployment": [ - "onesdk2744" + "onesdk284" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json index 7c1244d52c2e..05607db0cbc9 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourcegroups/pshtestrg1197/providers/Microsoft.KeyVault//vaults/onesdk5994?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlZ3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL29uZXNkazU5OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "4736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" ], "x-ms-request-id": [ - "0f0c6bcf-0055-49ef-8f31-848849cf56f3" + "a310eff0-1b0b-4acc-b92f-56bf9b279657" ], "x-ms-correlation-request-id": [ - "0f0c6bcf-0055-49ef-8f31-848849cf56f3" + "a310eff0-1b0b-4acc-b92f-56bf9b279657" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035654Z:0f0c6bcf-0055-49ef-8f31-848849cf56f3" + "WESTUS:20150513T195312Z:a310eff0-1b0b-4acc-b92f-56bf9b279657" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:56:53 GMT" + "Wed, 13 May 2015 19:53:12 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" + "fhlmJNLYPnp764O9rf98r+032N8xEbAipKeUghbHIVU=" ], "request-id": [ - "e64aab47-9a24-48ec-90f4-db22791f8d8f" + "13a57705-d9fb-47e7-9bc5-75820dc2d523" ], "client-request-id": [ - "62d1d5da-4198-4f66-8d19-8569567b2f38" + "64017679-0e33-467a-91d3-a3a1a8090b2b" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "PAbxz2PJ22XnXhth8EOfIrm2bvwZ7bOOQjqzi5sJx6EKPKkkFVk_AhsyRCNGZCa5oSB8l8g1TdEiJHkSj0g7I1Tc6l9dIW_xB2o9iuvCYGj23b0F4au_bbXdCWYUrvnQ.cEd6X5ai-p8C2N50BlmDR-4xU4fAs7wTnHL59mUsOvk" + "2Cju-MHvnZqgcRSs4WkRuX6z_TAvEU0W_vILpiUId4m4VEzXky2cv18rPYI14h0mbwESXM8e5drfJgrqVuoUQ7MagaPRebYLgxp7Jboy3ShH0La-bwHp4Fc9J83BxJP2ngdzGOobNMrKRmo-R-xceQ.10AFcFIE5uAbXuE-ZpQ2wn822mWMWZVbMNPuEBAWGZI" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:56:54 GMT" + "Wed, 13 May 2015 19:53:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5994?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNTk5ND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMjc4Mj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -134,10 +134,10 @@ "771" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5994\",\r\n \"name\": \"onesdk5994\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk5994.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk2782.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "663" @@ -155,22 +155,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "511808bd-f27f-410c-be88-3eb350c82dff" + "aece5719-ea05-4672-b9ae-d755a05945c6" ], "x-ms-correlation-request-id": [ - "511808bd-f27f-410c-be88-3eb350c82dff" + "aece5719-ea05-4672-b9ae-d755a05945c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035659Z:511808bd-f27f-410c-be88-3eb350c82dff" + "WESTUS:20150513T195317Z:aece5719-ea05-4672-b9ae-d755a05945c6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:56:59 GMT" + "Wed, 13 May 2015 19:53:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -185,8 +185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -194,10 +194,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -209,13 +209,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "11iwt901UN/FNchIH/Wpv/gMabTDDEDeFFgUOM8Kv5w=" + "DY7TQaBcGBdxiyBwhXtHOCQG2f/I+ISxBVfzVwhFykU=" ], "request-id": [ - "42b96a66-9c6a-40a0-80db-199b9d0931ed" + "0e26bf75-035a-4e6b-8d9d-e793a81077dd" ], "client-request-id": [ - "3b9cb6d5-8191-4829-9827-af0c522f3495" + "97146ad1-7ec7-453c-9436-e557486f6f4a" ], "x-ms-gateway-rewrite": [ "false" @@ -224,7 +224,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "cf9vCYM9pif7X4-SjWgl3JziTlFvdJ69XG3vtwH0HORYmP9zT8K65s0fmrr6MLilLs0TrT5e6rTXmQ-podgsTjx7pG-iAH7knucUr23s0jHQ8P3kwo1_003unCPvTeeb.2j2hpcWyccDOxlZUhdwd-PI0CJLx4dzwaM5sfUeGdC0" + "3A7Vrwmj0xUqnV98Fpp8FGbMBrPOkmq9nR6jUsPBInTYLOjPlIhU_ljIBt7GmW-BQU0YmSPSKo5HANtwQly79a64QYKaZ_9HcskzYJe9BLQIuUXPcGk8jeDYOqpVv09jj-8MbkZrvHt4GtUjzCIDUA.6s6X_1kw3-eHcT9O65KiSiYTIO8Ir-xB4Mm31zTeLV0" ], "X-Content-Type-Options": [ "nosniff" @@ -252,14 +252,14 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:56:59 GMT" + "Wed, 13 May 2015 19:53:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users?$filter=signInName%20eq%20'kmsngtu%40microsoft.com'&api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycz8kZmlsdGVyPXNpZ25Jbk5hbWUlMjBlcSUyMCdrbXNuZ3R1JTQwbWljcm9zb2Z0LmNvbScmYXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users?$filter=signInName%20eq%20'divyag%40ntdev.microsoft.com'&api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycz8kZmlsdGVyPXNpZ25Jbk5hbWUlMjBlcSUyMCdkaXZ5YWclNDBudGRldi5taWNyb3NvZnQuY29tJyZhcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -267,10 +267,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5987" + "7218" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" + "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" ], "request-id": [ - "fdba9dee-d7f7-4e26-88d2-2fad8dfcf922" + "5f975ec0-516a-4599-b9d6-c6c0348fb676" ], "client-request-id": [ - "00ac070b-88c7-4ebd-a4f3-ffa004684e29" + "c2d63d6a-c1c2-4d37-be19-47541bb640b5" ], "x-ms-gateway-rewrite": [ "false" @@ -297,7 +297,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "IuyIjpgb4HTnvGgjQM9wx0nEDul3OndAeqAZHH_xSK3TkUwYdf9bjn_zS9Aj7lMrUYR5UINwVQzyehQAATDrwrLVWQzZfm6QqEXeVmAxqk7MuTV1XL3-vISUZBrAH6NG.q9OeSHJZcoAdz8wZixY0ylrfTQoKEPM5FkggyPELJnU" + "Efln4fZi2u79VW_QSxGoCj76Js5_8Whg_s2l_skzS_i3HaguSC93UPrupxaeZRKh5XKNxtTztqIuijw10dB3qGSRJRCkxzZZD1yINqImw8OZrDQyGkV9-TTYCrCjWm9fYLMHdNt5Rfmw9QsAQvIeKA.oXjIJlKrlI_JTsvCMX2mGrxtXCl2NEh0P4Gckp2gJ_M" ], "X-Content-Type-Options": [ "nosniff" @@ -325,7 +325,7 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:56:59 GMT" + "Wed, 13 May 2015 19:53:17 GMT" ] }, "StatusCode": 200 @@ -333,16 +333,16 @@ ], "Names": { "Test-CreateNewVault": [ - "onesdk5994" + "onesdk2782" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultInUnknownResGrpFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultInUnknownResGrpFails.json index 7f775b4a88b6..a524e4f90437 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultInUnknownResGrpFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultInUnknownResGrpFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourcegroups/onesdk5923/providers/Microsoft.KeyVault//vaults/onesdk533?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlZ3JvdXBzL29uZXNkazU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL29uZXNkazUzMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk5923' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "102" + "4527" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-request-id": [ - "83a3c78b-13c9-43bd-a0b9-0d1d39fef3c9" + "13b5d5c8-4451-4d98-9ad4-2ae90009d017" ], "x-ms-correlation-request-id": [ - "83a3c78b-13c9-43bd-a0b9-0d1d39fef3c9" + "13b5d5c8-4451-4d98-9ad4-2ae90009d017" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035501Z:83a3c78b-13c9-43bd-a0b9-0d1d39fef3c9" + "WESTUS:20150513T194522Z:13b5d5c8-4451-4d98-9ad4-2ae90009d017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:55:00 GMT" + "Wed, 13 May 2015 19:45:22 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VVxluyB/90ULVNmN4ohZDq4pPkM8JjJfz7sFteoBp9Y=" + "csgseorRlJAybnlhqMV57B9hDXS3vgD6FG/g5k0RWg8=" ], "request-id": [ - "b7f0a007-8e5b-414f-b727-e5483b4d8609" + "c6d6c6db-252b-4913-a4d3-d369b4e2be4e" ], "client-request-id": [ - "39160633-14a5-444e-b334-e6f5cba4fef4" + "bba1a1c0-d9a8-454d-a45e-b66262b8472a" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "GhWszfl9mJGF71sY18b4MbntUm5NB-Ztq---oBvtPP7a3u4u3IMTKNe_CFXLtneaYPYc1fEVtPURlcPR3yNCxNy2_6I0X7r8yQln_IXutQ7VLLgfxRYOg0QUTf9oYiya.-Z4f373I10aoF56l6WJK7wL1RxDxryuHW_fxkwByTKU" + "GBvrWRxTaHnG7a5wfeQZ1COBTZgpD2QBvFgMEcGrRNj28jcm2GOk5B-sRxMyu-0lZLhT1mOIXS9vsn5BbPScH8g1k1F2-6u6_ESnzZ-3qZ6b4HnHt-ILUPdJaMkGvl1X.V0RwHY3JX1Whd2Ihb2dgrxphkuRx4D5QcnABfnDVfL0" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:55:01 GMT" + "Wed, 13 May 2015 19:45:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/onesdk5923/providers/Microsoft.KeyVault/vaults/onesdk533?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNTMzP2FwaS12ZXJzaW9uPTIwMTQtMTItMTktUFJFVklFVw==", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/onesdk6536/providers/Microsoft.KeyVault/vaults/onesdk3079?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL29uZXNkazY1MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMzA3OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -134,10 +134,10 @@ "724" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk5923' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk6536' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -155,13 +155,13 @@ "gateway" ], "x-ms-request-id": [ - "e65176b7-93f5-43a7-bc72-2f49a8e30ecf" + "014f00d5-09db-4dc3-8f80-5b791085864a" ], "x-ms-correlation-request-id": [ - "e65176b7-93f5-43a7-bc72-2f49a8e30ecf" + "014f00d5-09db-4dc3-8f80-5b791085864a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035501Z:e65176b7-93f5-43a7-bc72-2f49a8e30ecf" + "WESTUS:20150513T194523Z:014f00d5-09db-4dc3-8f80-5b791085864a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -170,7 +170,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:55:01 GMT" + "Wed, 13 May 2015 19:45:23 GMT" ] }, "StatusCode": 404 @@ -178,17 +178,17 @@ ], "Names": { "Test-CreateVaultInUnknownResGrpFails": [ - "onesdk533", - "onesdk5923" + "onesdk3079", + "onesdk6536" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultPositionalParams.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultPositionalParams.json index 72b9dcf9e9d8..dfe6618ae6ff 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultPositionalParams.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultPositionalParams.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourcegroups/pshtestrg1197/providers/Microsoft.KeyVault//vaults/onesdk7928?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlZ3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL29uZXNkazc5Mjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "4506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-request-id": [ - "3fe3af4c-045d-483d-8aa5-46c4d19930fa" + "fc22a3eb-6ee9-46ab-9189-ee19cfe03371" ], "x-ms-correlation-request-id": [ - "3fe3af4c-045d-483d-8aa5-46c4d19930fa" + "fc22a3eb-6ee9-46ab-9189-ee19cfe03371" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040115Z:3fe3af4c-045d-483d-8aa5-46c4d19930fa" + "WESTUS:20150513T195242Z:fc22a3eb-6ee9-46ab-9189-ee19cfe03371" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:01:15 GMT" + "Wed, 13 May 2015 19:52:42 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jScj0D9LuG9lNt/fa5UfFAKwsavkI3rF1e+07pDuN5c=" + "Oqko02haJxDTRhctK/G36gK387+J0M2ZgOrTBM5zf4M=" ], "request-id": [ - "45d392a1-f135-447b-9494-b0540c2e0263" + "a14e42a1-244d-4cdb-863b-f0b7dc8a305d" ], "client-request-id": [ - "00182290-daa4-4185-9383-df0cf308c319" + "08159f01-5aa0-4985-88c0-c4e9a0d7a2ac" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "tSXWBftqj7ER3jRpYfYDvmfEKS0YtCsyHKukBc3O_pOnJLTH9Y8QGIhqjTMh26ZnuL-xclRJq8irTu4-SVhkF-Q4dzKe0Jyz99ihUatug4iJH1R4RQEh37dATRmaKODr.8gfAhBycN2eF1-4JcMwDiw0dmBeeNHQoCuyrNfEgHRs" + "uaK6MlQDHxiWY5JxUxex8TOSC0IFIfSMXpJ090TSbtEHqpojEFOvXfzLY-AOpRpY8hyhxSgdI8tJ2PKV6VSFuFpf2WG1XV8ofsAcMzIlo1nxD4cBpGkJ6Ibr7qdiD4mWnPM7g_4Uf1rqIrX-26bkkA.HR0EMtaN2H3W5WPlbS75j9-xMMnnIbhDW1HoExMUNoc" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:01:16 GMT" + "Wed, 13 May 2015 19:52:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk7928?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNzkyOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNTIwMj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -134,10 +134,10 @@ "724" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk7928\",\r\n \"name\": \"onesdk7928\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk7928.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk5202.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "642" @@ -158,19 +158,19 @@ "1197" ], "x-ms-request-id": [ - "c390d847-c939-403f-86db-8fc8b16ece57" + "f287aa39-58b9-4028-8e43-0ae68116a37f" ], "x-ms-correlation-request-id": [ - "c390d847-c939-403f-86db-8fc8b16ece57" + "f287aa39-58b9-4028-8e43-0ae68116a37f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040124Z:c390d847-c939-403f-86db-8fc8b16ece57" + "WESTUS:20150513T195246Z:f287aa39-58b9-4028-8e43-0ae68116a37f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:01:24 GMT" + "Wed, 13 May 2015 19:52:46 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -185,8 +185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -194,10 +194,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -209,13 +209,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jScj0D9LuG9lNt/fa5UfFAKwsavkI3rF1e+07pDuN5c=" + "Oqko02haJxDTRhctK/G36gK387+J0M2ZgOrTBM5zf4M=" ], "request-id": [ - "67f63da2-be8d-461c-897f-80478df3a72f" + "3f4d7609-82fa-4ba4-a078-832b059f36ec" ], "client-request-id": [ - "ce9fcf0c-49f9-49a5-9eba-1414a81eddf6" + "da6c307f-b3d1-4742-af60-cb83b7843f1c" ], "x-ms-gateway-rewrite": [ "false" @@ -224,7 +224,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "zTqA0q4ZwhOo-SHHk0U2m63SYmVWOapcrzO57Q8IxaLfUr7TXVWGeS_Xa48_k_YQ0KG7M9qB8bEeNx3kD184O-lSh94EkUzUB4m3jg8vJ3ndWWTca00LaCewPASDrmX1.wePuVuw1rJVwwEAsQMzesXQb_Mncn7MMpk_yyLKl5Es" + "ygtU3_1Q1KZ46KRAIRZ0bt60wf122-B778SqpEoAThdKEBYbnzw5hMCyIU2uMxwEgk4ByDkcuuXCOOkX48BOnb-G0RbBPXeR5xGvqNLqigHvEfLdSOL4gSqgU0zU5-NwVRX1tZ__Jy8vUdZwkRNwiw.cK5j_wblbdMSNtKo6U1DFPOSkJb4FaVcKUV5pEZZSwg" ], "X-Content-Type-Options": [ "nosniff" @@ -252,7 +252,7 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:01:24 GMT" + "Wed, 13 May 2015 19:52:46 GMT" ] }, "StatusCode": 200 @@ -260,16 +260,16 @@ ], "Names": { "Test-CreateVaultPositionalParams": [ - "onesdk7928" + "onesdk5202" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteUnknownVaultFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteUnknownVaultFails.json index b6a2cff8bc36..f47c9335ee97 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteUnknownVaultFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteUnknownVaultFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.KeyVault/vaults/perfprodeas\",\r\n \"name\": \"perfprodeas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.KeyVault/vaults/perfprodsea\",\r\n \"name\": \"perfprodsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-CUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtcus\",\r\n \"name\": \"azkmsbasicdvtcus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteas\",\r\n \"name\": \"azkmsbasicdvteas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmstestdvteas\",\r\n \"name\": \"azkmstestdvteas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmstestdvteas2\",\r\n \"name\": \"azkmstestdvteas2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/kvsyntheticsprodeas1\",\r\n \"name\": \"kvsyntheticsprodeas1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteau\",\r\n \"name\": \"azkmsbasicdvteau\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EJP/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtejp\",\r\n \"name\": \"azkmsbasicdvtejp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EU2/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteu2\",\r\n \"name\": \"azkmsbasicdvteu2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteus\",\r\n \"name\": \"azkmsbasicdvteus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmspsnopermprodeus\",\r\n \"name\": \"azkmspsnopermprodeus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmspsprodeus\",\r\n \"name\": \"azkmspsprodeus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmstestdvteus\",\r\n \"name\": \"azkmstestdvteus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombo-node-test\",\r\n \"name\": \"fcolombo-node-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest2\",\r\n \"name\": \"fcolombotest2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"a\": \"123\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest3\",\r\n \"name\": \"fcolombotest3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"a\": \"123\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest4\",\r\n \"name\": \"fcolombotest4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/nodejs-test\",\r\n \"name\": \"nodejs-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/nodejs-test2\",\r\n \"name\": \"nodejs-test2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/yaktuvault\",\r\n \"name\": \"yaktuvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"myothertug\": \"4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NCU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtncu\",\r\n \"name\": \"azkmsbasicdvtncu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NCU/providers/Microsoft.KeyVault/vaults/azkmstestdvtncu\",\r\n \"name\": \"azkmstestdvtncu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NEU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtneu\",\r\n \"name\": \"azkmsbasicdvtneu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NEU/providers/Microsoft.KeyVault/vaults/azkmstestdvtneu\",\r\n \"name\": \"azkmstestdvtneu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SAU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsau\",\r\n \"name\": \"azkmsbasicdvtsau\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SBR/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsbr\",\r\n \"name\": \"azkmsbasicdvtsbr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SCU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtscu\",\r\n \"name\": \"azkmsbasicdvtscu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsea\",\r\n \"name\": \"azkmsbasicdvtsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmsdvt8b29726534a1\",\r\n \"name\": \"azkmsdvt8b29726534a1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmstestdvtsea\",\r\n \"name\": \"azkmstestdvtsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/kvsyntheticsprodsea1\",\r\n \"name\": \"kvsyntheticsprodsea1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtweu\",\r\n \"name\": \"azkmsbasicdvtweu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmsdvtf6613a6b99be\",\r\n \"name\": \"azkmsdvtf6613a6b99be\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmstestdvtweu\",\r\n \"name\": \"azkmstestdvtweu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WJP/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtwjp\",\r\n \"name\": \"azkmsbasicdvtwjp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtwus\",\r\n \"name\": \"azkmsbasicdvtwus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal22TestGroup/providers/Microsoft.KeyVault/vaults/Gnk22VaultPremium\",\r\n \"name\": \"Gnk22VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal22TestGroup/providers/Microsoft.KeyVault/vaults/Gnk22VaultStandard\",\r\n \"name\": \"Gnk22VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal23TestGroup/providers/Microsoft.KeyVault/vaults/Gnk23VaultPremium\",\r\n \"name\": \"Gnk23VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal23TestGroup/providers/Microsoft.KeyVault/vaults/Gnk23VaultStandard\",\r\n \"name\": \"Gnk23VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal24TestGroup/providers/Microsoft.KeyVault/vaults/Gnk24VaultPremium\",\r\n \"name\": \"Gnk24VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal24TestGroup/providers/Microsoft.KeyVault/vaults/Gnk24VaultStandard\",\r\n \"name\": \"Gnk24VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalcli\",\r\n \"name\": \"gkostalcli\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh\",\r\n \"name\": \"gkostalpsh\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh2\",\r\n \"name\": \"gkostalpsh2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh3\",\r\n \"name\": \"gkostalpsh3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli1\",\r\n \"name\": \"gnkcli1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli2\",\r\n \"name\": \"gnkcli2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli3\",\r\n \"name\": \"gnkcli3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli4\",\r\n \"name\": \"gnkcli4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"greg\": \"rocks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli6\",\r\n \"name\": \"gnkcli6\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultEAS\",\r\n \"name\": \"GkostalPreviewVaultEAS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultEUS\",\r\n \"name\": \"GkostalPreviewVaultEUS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultNCU\",\r\n \"name\": \"GkostalPreviewVaultNCU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultNEU\",\r\n \"name\": \"GkostalPreviewVaultNEU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultSEA\",\r\n \"name\": \"GkostalPreviewVaultSEA\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultWEU\",\r\n \"name\": \"GkostalPreviewVaultWEU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroup001/providers/Microsoft.KeyVault/vaults/GkostalTestVault001\",\r\n \"name\": \"GkostalTestVault001\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroup002/providers/Microsoft.KeyVault/vaults/GkostalTestVault002\",\r\n \"name\": \"GkostalTestVault002\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroupEAS/providers/Microsoft.KeyVault/vaults/GkostalTestVaultEAS\",\r\n \"name\": \"GkostalTestVaultEAS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroupEAS2/providers/Microsoft.KeyVault/vaults/GkostalTestVaultEAS2\",\r\n \"name\": \"GkostalTestVaultEAS2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gnk001TestGroup/providers/Microsoft.KeyVault/vaults/Gnk001VaultPremium\",\r\n \"name\": \"Gnk001VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gnk001TestGroup/providers/Microsoft.KeyVault/vaults/Gnk001VaultStandard\",\r\n \"name\": \"Gnk001VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gnktestresourcegroup001/providers/Microsoft.KeyVault/vaults/gnktestvault001\",\r\n \"name\": \"gnktestvault001\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhcli\",\r\n \"name\": \"pnhcli\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhvault\",\r\n \"name\": \"pnhvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhvault2\",\r\n \"name\": \"pnhvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg2734/providers/Microsoft.KeyVault/vaults/pshtestvault945\",\r\n \"name\": \"pshtestvault945\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6062/providers/Microsoft.KeyVault/vaults/onesdk3121\",\r\n \"name\": \"onesdk3121\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6062/providers/Microsoft.KeyVault/vaults/pshtestvault4267\",\r\n \"name\": \"pshtestvault4267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6472/providers/Microsoft.KeyVault/vaults/onesdk9033\",\r\n \"name\": \"onesdk9033\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6472/providers/Microsoft.KeyVault/vaults/pshtestvault1456\",\r\n \"name\": \"pshtestvault1456\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6619/providers/Microsoft.KeyVault/vaults/pshtestvault592\",\r\n \"name\": \"pshtestvault592\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg1021/providers/Microsoft.KeyVault/vaults/sdktestvault9128\",\r\n \"name\": \"sdktestvault9128\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg1144/providers/Microsoft.KeyVault/vaults/sdktestvault2705\",\r\n \"name\": \"sdktestvault2705\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg3378/providers/Microsoft.KeyVault/vaults/sdktestvault3881\",\r\n \"name\": \"sdktestvault3881\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg3541/providers/Microsoft.KeyVault/vaults/sdktestvault6239\",\r\n \"name\": \"sdktestvault6239\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg6207/providers/Microsoft.KeyVault/vaults/sdktestvault4207\",\r\n \"name\": \"sdktestvault4207\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "18788" + "4506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14996" ], "x-ms-request-id": [ - "c993d1de-0580-4933-9caa-98a5eb74317f" + "72e38ac6-83ad-4724-ae1c-99a2b281aa31" ], "x-ms-correlation-request-id": [ - "c993d1de-0580-4933-9caa-98a5eb74317f" + "72e38ac6-83ad-4724-ae1c-99a2b281aa31" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035328Z:c993d1de-0580-4933-9caa-98a5eb74317f" + "WESTUS:20150513T194740Z:72e38ac6-83ad-4724-ae1c-99a2b281aa31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:53:27 GMT" + "Wed, 13 May 2015 19:47:40 GMT" ] }, "StatusCode": 200 @@ -51,16 +51,16 @@ ], "Names": { "Test-DeleteUnknownVaultFails": [ - "onesdk5059" + "onesdk2648" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVaultByName.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVaultByName.json index 5fa2d085a00d..f8736c6ee3fd 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVaultByName.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVaultByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourcegroups/pshtestrg1197/providers/Microsoft.KeyVault//vaults/onesdk5263?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlZ3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL29uZXNkazUyNjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "4506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" ], "x-ms-request-id": [ - "81308e5c-aef6-4a8f-9301-f809471d5041" + "a5c2c0ec-198b-4dde-9b48-5f9151f58b0d" ], "x-ms-correlation-request-id": [ - "81308e5c-aef6-4a8f-9301-f809471d5041" + "a5c2c0ec-198b-4dde-9b48-5f9151f58b0d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040036Z:81308e5c-aef6-4a8f-9301-f809471d5041" + "WESTUS:20150513T195150Z:a5c2c0ec-198b-4dde-9b48-5f9151f58b0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,62 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:00:35 GMT" + "Wed, 13 May 2015 19:51:49 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547\",\r\n \"name\": \"onesdk3547\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4736" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "a755faa6-65a6-4ccf-b1c8-74818b4cd606" + ], + "x-ms-correlation-request-id": [ + "a755faa6-65a6-4ccf-b1c8-74818b4cd606" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T195153Z:a755faa6-65a6-4ccf-b1c8-74818b4cd606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:51:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +106,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +121,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QBKI9AbEYiPcuPxP6tzpZblINiB8xjSfl91MBr8+PRQ=" + "v3Hm4ryMiUbRFp0SVZWTWdMY+ECaxB3gLqmZMjwf8eQ=" ], "request-id": [ - "feafe6ca-57db-4f3e-aaab-31a56cb149fa" + "f877466a-18c1-431f-82fb-5753193c15a0" ], "client-request-id": [ - "0fe3e1af-67dd-47a4-854a-bf84d701eb54" + "3fc9b43b-4dd3-4e21-a50e-9a99342017d0" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +136,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "JO8ShuOZ3Pnz2bbiRrM7manavJVBRkeCdR7egnq2Ik_zICbLkWoHXBzAR-29P3Q5BpkUoxtzkbuyeoVb2dldmX6wZcMnfZZt2mWeFgc3mACifIgV-keK8n6Yq1WM411r.reAGpUJ-aW5CYneSm-uqL4ksoOfk0tx8snGNtU1u_n4" + "bB6nfVdk2NNxwhoaqRV1L1XrQCXeIEgVVvEXaas8D3CdDmxph_WIdhGS--jTue7Y3lcCffEjWAfPPUVoYtzGiyp31tC54G_dfvW-Ex0f4861TRBJmV_sybClPv1YkZuwCRuglW82k_mJMgDs5Ja1Vg.t8kAmQFiMe_cieqvLe5ydWWNkqzLnuJYLqy1NlQKFsg" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +164,16 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:00:35 GMT" + "Wed, 13 May 2015 19:51:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5263?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNTI2Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMzU0Nz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -134,10 +182,10 @@ "724" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5263\",\r\n \"name\": \"onesdk5263\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk5263.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547\",\r\n \"name\": \"onesdk3547\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk3547.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "642" @@ -155,22 +203,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-request-id": [ - "0d0dae6c-bce8-483a-8d93-b25d9fb265f5" + "ffdc75d5-4412-470b-86cf-e9058f9fde6c" ], "x-ms-correlation-request-id": [ - "0d0dae6c-bce8-483a-8d93-b25d9fb265f5" + "ffdc75d5-4412-470b-86cf-e9058f9fde6c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040048Z:0d0dae6c-bce8-483a-8d93-b25d9fb265f5" + "WESTUS:20150513T195153Z:ffdc75d5-4412-470b-86cf-e9058f9fde6c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:00:48 GMT" + "Wed, 13 May 2015 19:51:52 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -185,8 +233,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -194,10 +242,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -209,13 +257,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "4Vz2muQ9ny3ssg92dlS3ujqLsLiXeE/jX24WgtzQE60=" + "QHmIbgsFu1rpVDTznz9H/i9FqFuCAWYVLNRx8V7t6dU=" ], "request-id": [ - "0444ef01-0598-4ef9-8f7a-99d7df2e4313" + "3bd0f35f-f2ce-497a-a0d4-0891edb6f2f7" ], "client-request-id": [ - "9b49c673-33f8-4507-b240-a5a830771257" + "5bffbe44-3005-4283-ae09-86db709cd2ff" ], "x-ms-gateway-rewrite": [ "false" @@ -224,7 +272,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "MXkz-l78j9ZldFMw9D9nhCpLKMFkkIUexKRbr5l7yy-NVKgBz-z3ECT8TjkgjJi_CUDjVP2QE2SNrF3QcE_HYWyNqMxiwYUOghoywhevMzt9rsllSVGC8aphh1wFNfXj.QFR0gZ0JffKA9wzyez1Ryh5V153dc9zmhlRLcl3L5vM" + "xLoPz2HHqBMhbMR-DIaaE-VOMpXcg4JoRV--blNu-21jHfU7QQdVhvLHe2gM5vngoss3nFxlKHnkgLmOZjZTt_aX62IdAcw6IYRZhwB9NGKgLwPzTMip-6UI8nlgVjlnbkLJqbDZs8_1zDIAchZ7hA.n6rsK3AiID89nba9VvJrscD8zEyVUAs9zYtsCCkXoBk" ], "X-Content-Type-Options": [ "nosniff" @@ -252,67 +300,19 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:00:48 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.KeyVault/vaults/perfprodeas\",\r\n \"name\": \"perfprodeas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.KeyVault/vaults/perfprodsea\",\r\n \"name\": \"perfprodsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-CUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtcus\",\r\n \"name\": \"azkmsbasicdvtcus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteas\",\r\n \"name\": \"azkmsbasicdvteas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmstestdvteas\",\r\n \"name\": \"azkmstestdvteas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmstestdvteas2\",\r\n \"name\": \"azkmstestdvteas2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/kvsyntheticsprodeas1\",\r\n \"name\": \"kvsyntheticsprodeas1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteau\",\r\n \"name\": \"azkmsbasicdvteau\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EJP/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtejp\",\r\n \"name\": \"azkmsbasicdvtejp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EU2/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteu2\",\r\n \"name\": \"azkmsbasicdvteu2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteus\",\r\n \"name\": \"azkmsbasicdvteus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmspsnopermprodeus\",\r\n \"name\": \"azkmspsnopermprodeus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmspsprodeus\",\r\n \"name\": \"azkmspsprodeus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmstestdvteus\",\r\n \"name\": \"azkmstestdvteus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombo-node-test\",\r\n \"name\": \"fcolombo-node-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest2\",\r\n \"name\": \"fcolombotest2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"a\": \"123\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest3\",\r\n \"name\": \"fcolombotest3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"a\": \"123\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest4\",\r\n \"name\": \"fcolombotest4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/nodejs-test\",\r\n \"name\": \"nodejs-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/nodejs-test2\",\r\n \"name\": \"nodejs-test2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/yaktuvault\",\r\n \"name\": \"yaktuvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"myothertug\": \"4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NCU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtncu\",\r\n \"name\": \"azkmsbasicdvtncu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NCU/providers/Microsoft.KeyVault/vaults/azkmstestdvtncu\",\r\n \"name\": \"azkmstestdvtncu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NEU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtneu\",\r\n \"name\": \"azkmsbasicdvtneu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NEU/providers/Microsoft.KeyVault/vaults/azkmstestdvtneu\",\r\n \"name\": \"azkmstestdvtneu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SAU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsau\",\r\n \"name\": \"azkmsbasicdvtsau\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SBR/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsbr\",\r\n \"name\": \"azkmsbasicdvtsbr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SCU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtscu\",\r\n \"name\": \"azkmsbasicdvtscu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsea\",\r\n \"name\": \"azkmsbasicdvtsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmsdvt8b29726534a1\",\r\n \"name\": \"azkmsdvt8b29726534a1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmstestdvtsea\",\r\n \"name\": \"azkmstestdvtsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/kvsyntheticsprodsea1\",\r\n \"name\": \"kvsyntheticsprodsea1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtweu\",\r\n \"name\": \"azkmsbasicdvtweu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmsdvtf6613a6b99be\",\r\n \"name\": \"azkmsdvtf6613a6b99be\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmstestdvtweu\",\r\n \"name\": \"azkmstestdvtweu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WJP/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtwjp\",\r\n \"name\": \"azkmsbasicdvtwjp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtwus\",\r\n \"name\": \"azkmsbasicdvtwus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal22TestGroup/providers/Microsoft.KeyVault/vaults/Gnk22VaultPremium\",\r\n \"name\": \"Gnk22VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal22TestGroup/providers/Microsoft.KeyVault/vaults/Gnk22VaultStandard\",\r\n \"name\": \"Gnk22VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal23TestGroup/providers/Microsoft.KeyVault/vaults/Gnk23VaultPremium\",\r\n \"name\": \"Gnk23VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal23TestGroup/providers/Microsoft.KeyVault/vaults/Gnk23VaultStandard\",\r\n \"name\": \"Gnk23VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal24TestGroup/providers/Microsoft.KeyVault/vaults/Gnk24VaultPremium\",\r\n \"name\": \"Gnk24VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal24TestGroup/providers/Microsoft.KeyVault/vaults/Gnk24VaultStandard\",\r\n \"name\": \"Gnk24VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalcli\",\r\n \"name\": \"gkostalcli\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh\",\r\n \"name\": \"gkostalpsh\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh2\",\r\n \"name\": \"gkostalpsh2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh3\",\r\n \"name\": \"gkostalpsh3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli1\",\r\n \"name\": \"gnkcli1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli2\",\r\n \"name\": \"gnkcli2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli3\",\r\n \"name\": \"gnkcli3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli4\",\r\n \"name\": \"gnkcli4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"greg\": \"rocks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli6\",\r\n \"name\": \"gnkcli6\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultEAS\",\r\n \"name\": \"GkostalPreviewVaultEAS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultEUS\",\r\n \"name\": \"GkostalPreviewVaultEUS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultNCU\",\r\n \"name\": \"GkostalPreviewVaultNCU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultNEU\",\r\n \"name\": \"GkostalPreviewVaultNEU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultSEA\",\r\n \"name\": \"GkostalPreviewVaultSEA\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultWEU\",\r\n \"name\": \"GkostalPreviewVaultWEU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroup001/providers/Microsoft.KeyVault/vaults/GkostalTestVault001\",\r\n \"name\": \"GkostalTestVault001\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroup002/providers/Microsoft.KeyVault/vaults/GkostalTestVault002\",\r\n \"name\": \"GkostalTestVault002\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroupEAS/providers/Microsoft.KeyVault/vaults/GkostalTestVaultEAS\",\r\n \"name\": \"GkostalTestVaultEAS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroupEAS2/providers/Microsoft.KeyVault/vaults/GkostalTestVaultEAS2\",\r\n \"name\": \"GkostalTestVaultEAS2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gnk001TestGroup/providers/Microsoft.KeyVault/vaults/Gnk001VaultPremium\",\r\n \"name\": \"Gnk001VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gnk001TestGroup/providers/Microsoft.KeyVault/vaults/Gnk001VaultStandard\",\r\n \"name\": \"Gnk001VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gnktestresourcegroup001/providers/Microsoft.KeyVault/vaults/gnktestvault001\",\r\n \"name\": \"gnktestvault001\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhcli\",\r\n \"name\": \"pnhcli\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhvault\",\r\n \"name\": \"pnhvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhvault2\",\r\n \"name\": \"pnhvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk2744\",\r\n \"name\": \"onesdk2744\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5263\",\r\n \"name\": \"onesdk5263\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5994\",\r\n \"name\": \"onesdk5994\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg2734/providers/Microsoft.KeyVault/vaults/pshtestvault945\",\r\n \"name\": \"pshtestvault945\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6062/providers/Microsoft.KeyVault/vaults/onesdk3121\",\r\n \"name\": \"onesdk3121\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6062/providers/Microsoft.KeyVault/vaults/pshtestvault4267\",\r\n \"name\": \"pshtestvault4267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6472/providers/Microsoft.KeyVault/vaults/onesdk9033\",\r\n \"name\": \"onesdk9033\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6472/providers/Microsoft.KeyVault/vaults/pshtestvault1456\",\r\n \"name\": \"pshtestvault1456\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6619/providers/Microsoft.KeyVault/vaults/pshtestvault592\",\r\n \"name\": \"pshtestvault592\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg1021/providers/Microsoft.KeyVault/vaults/sdktestvault9128\",\r\n \"name\": \"sdktestvault9128\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg1144/providers/Microsoft.KeyVault/vaults/sdktestvault2705\",\r\n \"name\": \"sdktestvault2705\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg3378/providers/Microsoft.KeyVault/vaults/sdktestvault3881\",\r\n \"name\": \"sdktestvault3881\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg3541/providers/Microsoft.KeyVault/vaults/sdktestvault6239\",\r\n \"name\": \"sdktestvault6239\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg6207/providers/Microsoft.KeyVault/vaults/sdktestvault4207\",\r\n \"name\": \"sdktestvault4207\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "19479" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "0f643c45-92f4-4092-9830-1186ea156176" - ], - "x-ms-correlation-request-id": [ - "0f643c45-92f4-4092-9830-1186ea156176" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T040048Z:0f643c45-92f4-4092-9830-1186ea156176" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 04:00:48 GMT" + "Wed, 13 May 2015 19:51:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5263?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNTI2Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMzU0Nz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, "ResponseBody": "", @@ -330,22 +330,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1192" ], "x-ms-request-id": [ - "681a44f2-b9c5-4fee-86d5-0c7745e44feb" + "56ed8246-40c5-4cc1-99d0-cf928383894d" ], "x-ms-correlation-request-id": [ - "681a44f2-b9c5-4fee-86d5-0c7745e44feb" + "56ed8246-40c5-4cc1-99d0-cf928383894d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040051Z:681a44f2-b9c5-4fee-86d5-0c7745e44feb" + "WESTUS:20150513T195156Z:56ed8246-40c5-4cc1-99d0-cf928383894d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:00:50 GMT" + "Wed, 13 May 2015 19:51:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -360,13 +360,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5263?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNTI2Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMzU0Nz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", @@ -387,13 +387,13 @@ "gateway" ], "x-ms-request-id": [ - "59dd20d7-d820-4937-8348-a5101971e760" + "f0b488e8-855c-4e3b-8b5a-31c9bb845b84" ], "x-ms-correlation-request-id": [ - "59dd20d7-d820-4937-8348-a5101971e760" + "f0b488e8-855c-4e3b-8b5a-31c9bb845b84" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040051Z:59dd20d7-d820-4937-8348-a5101971e760" + "WESTUS:20150513T195156Z:f0b488e8-855c-4e3b-8b5a-31c9bb845b84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -402,7 +402,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:00:50 GMT" + "Wed, 13 May 2015 19:51:56 GMT" ] }, "StatusCode": 404 @@ -410,16 +410,16 @@ ], "Names": { "Test-DeleteVaultByName": [ - "onesdk5263" + "onesdk3547" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetUnknownVaultFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetUnknownVaultFails.json index 263d71b03792..2afba54d81c4 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetUnknownVaultFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetUnknownVaultFails.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk6132?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNjEzMj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk6295?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNjI5NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", @@ -28,13 +28,13 @@ "gateway" ], "x-ms-request-id": [ - "693d8abf-fc46-4e69-bcbf-c66d3c85ef2d" + "767c5d9a-c303-4907-8c83-f146e45aa8be" ], "x-ms-correlation-request-id": [ - "693d8abf-fc46-4e69-bcbf-c66d3c85ef2d" + "767c5d9a-c303-4907-8c83-f146e45aa8be" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040340Z:693d8abf-fc46-4e69-bcbf-c66d3c85ef2d" + "CENTRALUS:20150513T195047Z:767c5d9a-c303-4907-8c83-f146e45aa8be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:03:40 GMT" + "Wed, 13 May 2015 19:50:46 GMT" ] }, "StatusCode": 404 @@ -51,16 +51,16 @@ ], "Names": { "Test-GetUnknownVaultFails": [ - "onesdk6132" + "onesdk6295" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByName.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByName.json index d58447763c16..88501a4cc3bb 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByName.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.KeyVault/vaults/perfprodeas\",\r\n \"name\": \"perfprodeas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.KeyVault/vaults/perfprodsea\",\r\n \"name\": \"perfprodsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-CUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtcus\",\r\n \"name\": \"azkmsbasicdvtcus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteas\",\r\n \"name\": \"azkmsbasicdvteas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmstestdvteas\",\r\n \"name\": \"azkmstestdvteas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmstestdvteas2\",\r\n \"name\": \"azkmstestdvteas2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/kvsyntheticsprodeas1\",\r\n \"name\": \"kvsyntheticsprodeas1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteau\",\r\n \"name\": \"azkmsbasicdvteau\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EJP/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtejp\",\r\n \"name\": \"azkmsbasicdvtejp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EU2/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteu2\",\r\n \"name\": \"azkmsbasicdvteu2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteus\",\r\n \"name\": \"azkmsbasicdvteus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmspsnopermprodeus\",\r\n \"name\": \"azkmspsnopermprodeus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmspsprodeus\",\r\n \"name\": \"azkmspsprodeus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmstestdvteus\",\r\n \"name\": \"azkmstestdvteus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombo-node-test\",\r\n \"name\": \"fcolombo-node-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest2\",\r\n \"name\": \"fcolombotest2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"a\": \"123\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest3\",\r\n \"name\": \"fcolombotest3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"a\": \"123\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest4\",\r\n \"name\": \"fcolombotest4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/nodejs-test\",\r\n \"name\": \"nodejs-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/nodejs-test2\",\r\n \"name\": \"nodejs-test2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/yaktuvault\",\r\n \"name\": \"yaktuvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"myothertug\": \"4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NCU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtncu\",\r\n \"name\": \"azkmsbasicdvtncu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NCU/providers/Microsoft.KeyVault/vaults/azkmstestdvtncu\",\r\n \"name\": \"azkmstestdvtncu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NEU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtneu\",\r\n \"name\": \"azkmsbasicdvtneu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NEU/providers/Microsoft.KeyVault/vaults/azkmstestdvtneu\",\r\n \"name\": \"azkmstestdvtneu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SAU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsau\",\r\n \"name\": \"azkmsbasicdvtsau\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SBR/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsbr\",\r\n \"name\": \"azkmsbasicdvtsbr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SCU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtscu\",\r\n \"name\": \"azkmsbasicdvtscu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsea\",\r\n \"name\": \"azkmsbasicdvtsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmsdvt8b29726534a1\",\r\n \"name\": \"azkmsdvt8b29726534a1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmstestdvtsea\",\r\n \"name\": \"azkmstestdvtsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/kvsyntheticsprodsea1\",\r\n \"name\": \"kvsyntheticsprodsea1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtweu\",\r\n \"name\": \"azkmsbasicdvtweu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmsdvtf6613a6b99be\",\r\n \"name\": \"azkmsdvtf6613a6b99be\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmstestdvtweu\",\r\n \"name\": \"azkmstestdvtweu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WJP/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtwjp\",\r\n \"name\": \"azkmsbasicdvtwjp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtwus\",\r\n \"name\": \"azkmsbasicdvtwus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal22TestGroup/providers/Microsoft.KeyVault/vaults/Gnk22VaultPremium\",\r\n \"name\": \"Gnk22VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal22TestGroup/providers/Microsoft.KeyVault/vaults/Gnk22VaultStandard\",\r\n \"name\": \"Gnk22VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal23TestGroup/providers/Microsoft.KeyVault/vaults/Gnk23VaultPremium\",\r\n \"name\": \"Gnk23VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal23TestGroup/providers/Microsoft.KeyVault/vaults/Gnk23VaultStandard\",\r\n \"name\": \"Gnk23VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal24TestGroup/providers/Microsoft.KeyVault/vaults/Gnk24VaultPremium\",\r\n \"name\": \"Gnk24VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal24TestGroup/providers/Microsoft.KeyVault/vaults/Gnk24VaultStandard\",\r\n \"name\": \"Gnk24VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalcli\",\r\n \"name\": \"gkostalcli\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh\",\r\n \"name\": \"gkostalpsh\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh2\",\r\n \"name\": \"gkostalpsh2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh3\",\r\n \"name\": \"gkostalpsh3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli1\",\r\n \"name\": \"gnkcli1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli2\",\r\n \"name\": \"gnkcli2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli3\",\r\n \"name\": \"gnkcli3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli4\",\r\n \"name\": \"gnkcli4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"greg\": \"rocks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli6\",\r\n \"name\": \"gnkcli6\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultEAS\",\r\n \"name\": \"GkostalPreviewVaultEAS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultEUS\",\r\n \"name\": \"GkostalPreviewVaultEUS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultNCU\",\r\n \"name\": \"GkostalPreviewVaultNCU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultNEU\",\r\n \"name\": \"GkostalPreviewVaultNEU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultSEA\",\r\n \"name\": \"GkostalPreviewVaultSEA\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultWEU\",\r\n \"name\": \"GkostalPreviewVaultWEU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroup001/providers/Microsoft.KeyVault/vaults/GkostalTestVault001\",\r\n \"name\": \"GkostalTestVault001\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroup002/providers/Microsoft.KeyVault/vaults/GkostalTestVault002\",\r\n \"name\": \"GkostalTestVault002\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroupEAS/providers/Microsoft.KeyVault/vaults/GkostalTestVaultEAS\",\r\n \"name\": \"GkostalTestVaultEAS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroupEAS2/providers/Microsoft.KeyVault/vaults/GkostalTestVaultEAS2\",\r\n \"name\": \"GkostalTestVaultEAS2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gnk001TestGroup/providers/Microsoft.KeyVault/vaults/Gnk001VaultPremium\",\r\n \"name\": \"Gnk001VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gnk001TestGroup/providers/Microsoft.KeyVault/vaults/Gnk001VaultStandard\",\r\n \"name\": \"Gnk001VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gnktestresourcegroup001/providers/Microsoft.KeyVault/vaults/gnktestvault001\",\r\n \"name\": \"gnktestvault001\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhcli\",\r\n \"name\": \"pnhcli\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhvault\",\r\n \"name\": \"pnhvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhvault2\",\r\n \"name\": \"pnhvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk2744\",\r\n \"name\": \"onesdk2744\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5994\",\r\n \"name\": \"onesdk5994\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg2734/providers/Microsoft.KeyVault/vaults/pshtestvault945\",\r\n \"name\": \"pshtestvault945\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6062/providers/Microsoft.KeyVault/vaults/onesdk3121\",\r\n \"name\": \"onesdk3121\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6062/providers/Microsoft.KeyVault/vaults/pshtestvault4267\",\r\n \"name\": \"pshtestvault4267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6472/providers/Microsoft.KeyVault/vaults/onesdk9033\",\r\n \"name\": \"onesdk9033\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6472/providers/Microsoft.KeyVault/vaults/pshtestvault1456\",\r\n \"name\": \"pshtestvault1456\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6619/providers/Microsoft.KeyVault/vaults/pshtestvault592\",\r\n \"name\": \"pshtestvault592\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg1021/providers/Microsoft.KeyVault/vaults/sdktestvault9128\",\r\n \"name\": \"sdktestvault9128\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg1144/providers/Microsoft.KeyVault/vaults/sdktestvault2705\",\r\n \"name\": \"sdktestvault2705\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg3378/providers/Microsoft.KeyVault/vaults/sdktestvault3881\",\r\n \"name\": \"sdktestvault3881\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg3541/providers/Microsoft.KeyVault/vaults/sdktestvault6239\",\r\n \"name\": \"sdktestvault6239\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg6207/providers/Microsoft.KeyVault/vaults/sdktestvault4207\",\r\n \"name\": \"sdktestvault4207\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "19259" + "4527" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14996" ], "x-ms-request-id": [ - "f2026434-7bf2-4182-a0a2-432d4717eff4" + "5d81fe07-5274-469c-87df-7599d52d5ce2" ], "x-ms-correlation-request-id": [ - "f2026434-7bf2-4182-a0a2-432d4717eff4" + "5d81fe07-5274-469c-87df-7599d52d5ce2" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035947Z:f2026434-7bf2-4182-a0a2-432d4717eff4" + "WESTUS:20150513T194449Z:5d81fe07-5274-469c-87df-7599d52d5ce2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,25 +43,25 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:59:47 GMT" + "Wed, 13 May 2015 19:44:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,22 +76,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14998" ], "x-ms-request-id": [ - "8b284479-ac0c-4f45-aeaa-9ce95e07536b" + "4973232a-3508-4f5a-9ad4-81599a5bc160" ], "x-ms-correlation-request-id": [ - "8b284479-ac0c-4f45-aeaa-9ce95e07536b" + "4973232a-3508-4f5a-9ad4-81599a5bc160" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035948Z:8b284479-ac0c-4f45-aeaa-9ce95e07536b" + "WESTUS:20150513T194452Z:4973232a-3508-4f5a-9ad4-81599a5bc160" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:59:47 GMT" + "Wed, 13 May 2015 19:44:52 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -108,12 +108,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroup.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroup.json index 30e4e431a163..4f5512eea3eb 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroup.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroup.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "468" + "447" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14992" ], "x-ms-request-id": [ - "9953c715-772c-401d-b34b-e0bc65d1af3b" + "450fb3d9-f5bc-46c2-b233-1adfbad16953" ], "x-ms-correlation-request-id": [ - "9953c715-772c-401d-b34b-e0bc65d1af3b" + "450fb3d9-f5bc-46c2-b233-1adfbad16953" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035526Z:9953c715-772c-401d-b34b-e0bc65d1af3b" + "WESTUS:20150513T195541Z:450fb3d9-f5bc-46c2-b233-1adfbad16953" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:55:25 GMT" + "Wed, 13 May 2015 19:55:41 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -60,12 +60,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroupPositionalParams.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroupPositionalParams.json index 82bd974e0cf5..5401a156f5d7 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroupPositionalParams.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroupPositionalParams.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14992" ], "x-ms-request-id": [ - "c4a68f72-88cc-44e2-9c10-72d9b4945766" + "6cf3c258-789a-4ed3-bf0e-da64a719077f" ], "x-ms-correlation-request-id": [ - "c4a68f72-88cc-44e2-9c10-72d9b4945766" + "6cf3c258-789a-4ed3-bf0e-da64a719077f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035852Z:c4a68f72-88cc-44e2-9c10-72d9b4945766" + "WESTUS:20150513T195707Z:6cf3c258-789a-4ed3-bf0e-da64a719077f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:58:52 GMT" + "Wed, 13 May 2015 19:57:06 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -60,12 +60,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultFromUnknownResourceGroupFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultFromUnknownResourceGroupFails.json index a51e5cb393a3..ac5eae2e0bc6 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultFromUnknownResourceGroupFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultFromUnknownResourceGroupFails.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/onesdk1776/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/onesdk454/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wc2h0ZXN0dmF1bHQxMDE4P2FwaS12ZXJzaW9uPTIwMTQtMTItMTktUFJFVklFVw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk1776' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk454' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "gateway" ], "x-ms-request-id": [ - "e4007f27-43a3-4562-8929-3b48596feea2" + "809974e1-65d1-4776-8d88-592e5b3a1a39" ], "x-ms-correlation-request-id": [ - "e4007f27-43a3-4562-8929-3b48596feea2" + "809974e1-65d1-4776-8d88-592e5b3a1a39" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040314Z:e4007f27-43a3-4562-8929-3b48596feea2" + "WESTUS:20150513T195516Z:809974e1-65d1-4776-8d88-592e5b3a1a39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:03:14 GMT" + "Wed, 13 May 2015 19:55:16 GMT" ] }, "StatusCode": 404 @@ -51,16 +51,16 @@ ], "Names": { "Test-GetVaultFromUnknownResourceGroupFails": [ - "onesdk1776" + "onesdk454" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListAllVaultsInSubscription.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListAllVaultsInSubscription.json index e81658f4c344..88e36ab092c3 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListAllVaultsInSubscription.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListAllVaultsInSubscription.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.KeyVault/vaults/perfprodeas\",\r\n \"name\": \"perfprodeas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.KeyVault/vaults/perfprodsea\",\r\n \"name\": \"perfprodsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-CUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtcus\",\r\n \"name\": \"azkmsbasicdvtcus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteas\",\r\n \"name\": \"azkmsbasicdvteas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmstestdvteas\",\r\n \"name\": \"azkmstestdvteas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/azkmstestdvteas2\",\r\n \"name\": \"azkmstestdvteas2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAS/providers/Microsoft.KeyVault/vaults/kvsyntheticsprodeas1\",\r\n \"name\": \"kvsyntheticsprodeas1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EAU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteau\",\r\n \"name\": \"azkmsbasicdvteau\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EJP/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtejp\",\r\n \"name\": \"azkmsbasicdvtejp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EU2/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteu2\",\r\n \"name\": \"azkmsbasicdvteu2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvteus\",\r\n \"name\": \"azkmsbasicdvteus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmspsnopermprodeus\",\r\n \"name\": \"azkmspsnopermprodeus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmspsprodeus\",\r\n \"name\": \"azkmspsprodeus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/azkmstestdvteus\",\r\n \"name\": \"azkmstestdvteus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombo-node-test\",\r\n \"name\": \"fcolombo-node-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest2\",\r\n \"name\": \"fcolombotest2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"a\": \"123\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest3\",\r\n \"name\": \"fcolombotest3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"a\": \"123\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/fcolombotest4\",\r\n \"name\": \"fcolombotest4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/nodejs-test\",\r\n \"name\": \"nodejs-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/nodejs-test2\",\r\n \"name\": \"nodejs-test2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-EUS/providers/Microsoft.KeyVault/vaults/yaktuvault\",\r\n \"name\": \"yaktuvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"myothertug\": \"4\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NCU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtncu\",\r\n \"name\": \"azkmsbasicdvtncu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NCU/providers/Microsoft.KeyVault/vaults/azkmstestdvtncu\",\r\n \"name\": \"azkmstestdvtncu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NEU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtneu\",\r\n \"name\": \"azkmsbasicdvtneu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-NEU/providers/Microsoft.KeyVault/vaults/azkmstestdvtneu\",\r\n \"name\": \"azkmstestdvtneu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SAU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsau\",\r\n \"name\": \"azkmsbasicdvtsau\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SBR/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsbr\",\r\n \"name\": \"azkmsbasicdvtsbr\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SCU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtscu\",\r\n \"name\": \"azkmsbasicdvtscu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtsea\",\r\n \"name\": \"azkmsbasicdvtsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmsdvt8b29726534a1\",\r\n \"name\": \"azkmsdvt8b29726534a1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/azkmstestdvtsea\",\r\n \"name\": \"azkmstestdvtsea\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-SEA/providers/Microsoft.KeyVault/vaults/kvsyntheticsprodsea1\",\r\n \"name\": \"kvsyntheticsprodsea1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtweu\",\r\n \"name\": \"azkmsbasicdvtweu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmsdvtf6613a6b99be\",\r\n \"name\": \"azkmsdvtf6613a6b99be\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WEU/providers/Microsoft.KeyVault/vaults/azkmstestdvtweu\",\r\n \"name\": \"azkmstestdvtweu\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WJP/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtwjp\",\r\n \"name\": \"azkmsbasicdvtwjp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/DVT-WUS/providers/Microsoft.KeyVault/vaults/azkmsbasicdvtwus\",\r\n \"name\": \"azkmsbasicdvtwus\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal22TestGroup/providers/Microsoft.KeyVault/vaults/Gnk22VaultPremium\",\r\n \"name\": \"Gnk22VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal22TestGroup/providers/Microsoft.KeyVault/vaults/Gnk22VaultStandard\",\r\n \"name\": \"Gnk22VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal23TestGroup/providers/Microsoft.KeyVault/vaults/Gnk23VaultPremium\",\r\n \"name\": \"Gnk23VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal23TestGroup/providers/Microsoft.KeyVault/vaults/Gnk23VaultStandard\",\r\n \"name\": \"Gnk23VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal24TestGroup/providers/Microsoft.KeyVault/vaults/Gnk24VaultPremium\",\r\n \"name\": \"Gnk24VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gkostal24TestGroup/providers/Microsoft.KeyVault/vaults/Gnk24VaultStandard\",\r\n \"name\": \"Gnk24VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalcli\",\r\n \"name\": \"gkostalcli\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh\",\r\n \"name\": \"gkostalpsh\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh2\",\r\n \"name\": \"gkostalpsh2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gkostalpsh3\",\r\n \"name\": \"gkostalpsh3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli1\",\r\n \"name\": \"gnkcli1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli2\",\r\n \"name\": \"gnkcli2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli3\",\r\n \"name\": \"gnkcli3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli4\",\r\n \"name\": \"gnkcli4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"greg\": \"rocks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gkostal72/providers/Microsoft.KeyVault/vaults/gnkcli6\",\r\n \"name\": \"gnkcli6\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultEAS\",\r\n \"name\": \"GkostalPreviewVaultEAS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultEUS\",\r\n \"name\": \"GkostalPreviewVaultEUS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultNCU\",\r\n \"name\": \"GkostalPreviewVaultNCU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultNEU\",\r\n \"name\": \"GkostalPreviewVaultNEU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultSEA\",\r\n \"name\": \"GkostalPreviewVaultSEA\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalPreviewGroup/providers/Microsoft.KeyVault/vaults/GkostalPreviewVaultWEU\",\r\n \"name\": \"GkostalPreviewVaultWEU\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroup001/providers/Microsoft.KeyVault/vaults/GkostalTestVault001\",\r\n \"name\": \"GkostalTestVault001\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroup002/providers/Microsoft.KeyVault/vaults/GkostalTestVault002\",\r\n \"name\": \"GkostalTestVault002\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroupEAS/providers/Microsoft.KeyVault/vaults/GkostalTestVaultEAS\",\r\n \"name\": \"GkostalTestVaultEAS\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/GkostalTestGroupEAS2/providers/Microsoft.KeyVault/vaults/GkostalTestVaultEAS2\",\r\n \"name\": \"GkostalTestVaultEAS2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gnk001TestGroup/providers/Microsoft.KeyVault/vaults/Gnk001VaultPremium\",\r\n \"name\": \"Gnk001VaultPremium\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/Gnk001TestGroup/providers/Microsoft.KeyVault/vaults/Gnk001VaultStandard\",\r\n \"name\": \"Gnk001VaultStandard\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/gnktestresourcegroup001/providers/Microsoft.KeyVault/vaults/gnktestvault001\",\r\n \"name\": \"gnktestvault001\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhcli\",\r\n \"name\": \"pnhcli\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhvault\",\r\n \"name\": \"pnhvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnhvault2\",\r\n \"name\": \"pnhvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5994\",\r\n \"name\": \"onesdk5994\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg2734/providers/Microsoft.KeyVault/vaults/pshtestvault945\",\r\n \"name\": \"pshtestvault945\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6062/providers/Microsoft.KeyVault/vaults/onesdk3121\",\r\n \"name\": \"onesdk3121\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6062/providers/Microsoft.KeyVault/vaults/pshtestvault4267\",\r\n \"name\": \"pshtestvault4267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6472/providers/Microsoft.KeyVault/vaults/onesdk9033\",\r\n \"name\": \"onesdk9033\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6472/providers/Microsoft.KeyVault/vaults/pshtestvault1456\",\r\n \"name\": \"pshtestvault1456\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6619/providers/Microsoft.KeyVault/vaults/pshtestvault592\",\r\n \"name\": \"pshtestvault592\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg1021/providers/Microsoft.KeyVault/vaults/sdktestvault9128\",\r\n \"name\": \"sdktestvault9128\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg1144/providers/Microsoft.KeyVault/vaults/sdktestvault2705\",\r\n \"name\": \"sdktestvault2705\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg3378/providers/Microsoft.KeyVault/vaults/sdktestvault3881\",\r\n \"name\": \"sdktestvault3881\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg3541/providers/Microsoft.KeyVault/vaults/sdktestvault6239\",\r\n \"name\": \"sdktestvault6239\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/sdktestrg6207/providers/Microsoft.KeyVault/vaults/sdktestvault4207\",\r\n \"name\": \"sdktestvault4207\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "19039" + "4506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14999" ], "x-ms-request-id": [ - "360d34df-9c39-456a-b346-4f728d79c5aa" + "4247335b-ba2c-48ee-bb76-a4fd52c2936d" ], "x-ms-correlation-request-id": [ - "360d34df-9c39-456a-b346-4f728d79c5aa" + "4247335b-ba2c-48ee-bb76-a4fd52c2936d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035723Z:360d34df-9c39-456a-b346-4f728d79c5aa" + "CENTRALUS:20150513T194934Z:4247335b-ba2c-48ee-bb76-a4fd52c2936d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:57:23 GMT" + "Wed, 13 May 2015 19:49:33 GMT" ] }, "StatusCode": 200 @@ -51,12 +51,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByResourceGroup.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByResourceGroup.json index b0efbdef0e0d..5eb3091ce632 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByResourceGroup.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByResourceGroup.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk2744\",\r\n \"name\": \"onesdk2744\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk5994\",\r\n \"name\": \"onesdk5994\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/onesdk7928\",\r\n \"name\": \"onesdk7928\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "944" + "734" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14998" ], "x-ms-request-id": [ - "a3070529-4e02-4db7-82f0-a8adb888fbde" + "5b9d0c96-718e-45f9-af77-1143e728cd3e" ], "x-ms-correlation-request-id": [ - "a3070529-4e02-4db7-82f0-a8adb888fbde" + "5b9d0c96-718e-45f9-af77-1143e728cd3e" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040250Z:a3070529-4e02-4db7-82f0-a8adb888fbde" + "WESTUS:20150513T195454Z:5b9d0c96-718e-45f9-af77-1143e728cd3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:02:50 GMT" + "Wed, 13 May 2015 19:54:53 GMT" ] }, "StatusCode": 200 @@ -51,12 +51,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByTag.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByTag.json index 98c791a7fc98..79ef7c8b8282 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByTag.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByTag.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resources?$filter=tagname%20eq%20'testtag'%20and%20tagvalue%20eq%20'testvalue'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlcz8kZmlsdGVyPXRhZ25hbWUlMjBlcSUyMCd0ZXN0dGFnJyUyMGFuZCUyMHRhZ3ZhbHVlJTIwZXElMjAndGVzdHZhbHVlJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=tagname%20eq%20'testtag'%20and%20tagvalue%20eq%20'testvalue'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXRhZ25hbWUlMjBlcSUyMCd0ZXN0dGFnJyUyMGFuZCUyMHRhZ3ZhbHVlJTIwZXElMjAndGVzdHZhbHVlJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg2734/providers/Microsoft.KeyVault/vaults/pshtestvault945\",\r\n \"name\": \"pshtestvault945\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg6619/providers/Microsoft.KeyVault/vaults/pshtestvault592\",\r\n \"name\": \"pshtestvault592\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "703" + "231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14993" ], "x-ms-request-id": [ - "e3d4f559-6fda-48d5-a32e-90f889e5b9af" + "1677afaa-41ab-4869-97da-95d618d8a56f" ], "x-ms-correlation-request-id": [ - "e3d4f559-6fda-48d5-a32e-90f889e5b9af" + "1677afaa-41ab-4869-97da-95d618d8a56f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035547Z:e3d4f559-6fda-48d5-a32e-90f889e5b9af" + "WESTUS:20150513T195640Z:1677afaa-41ab-4869-97da-95d618d8a56f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:55:47 GMT" + "Wed, 13 May 2015 19:56:39 GMT" ] }, "StatusCode": 200 @@ -51,12 +51,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByUnknownResourceGroupFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByUnknownResourceGroupFails.json index 1df6efe512b5..aa0f8b6869bd 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByUnknownResourceGroupFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByUnknownResourceGroupFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/onesdk2190/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL29uZXNkazIxOTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/onesdk5441/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL29uZXNkazU0NDEvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk2190' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk5441' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14992" ], "x-ms-request-id": [ - "4b58a17e-6f8b-423f-9bd8-f7b5c5dd7b68" + "eead9132-cd42-4ae8-bcf5-7e9885d592e6" ], "x-ms-correlation-request-id": [ - "4b58a17e-6f8b-423f-9bd8-f7b5c5dd7b68" + "eead9132-cd42-4ae8-bcf5-7e9885d592e6" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040012Z:4b58a17e-6f8b-423f-9bd8-f7b5c5dd7b68" + "WESTUS:20150513T195219Z:eead9132-cd42-4ae8-bcf5-7e9885d592e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:00:11 GMT" + "Wed, 13 May 2015 19:52:19 GMT" ] }, "StatusCode": 404 @@ -54,16 +54,16 @@ ], "Names": { "Test-ListVaultsByUnknownResourceGroupFails": [ - "onesdk2190" + "onesdk5441" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicy.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicy.json index 2e18118f9f03..5eb5a8c2e755 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicy.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicy.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "468" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14999" ], "x-ms-request-id": [ - "3e179d29-0ee3-4c58-b51b-c4d424fd026c" + "d146dae9-e7ba-4cf4-b97d-d6a108a1713e" ], "x-ms-correlation-request-id": [ - "3e179d29-0ee3-4c58-b51b-c4d424fd026c" + "d146dae9-e7ba-4cf4-b97d-d6a108a1713e" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193427Z:3e179d29-0ee3-4c58-b51b-c4d424fd026c" + "CENTRALUS:20150513T195015Z:d146dae9-e7ba-4cf4-b97d-d6a108a1713e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:26 GMT" + "Wed, 13 May 2015 19:50:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -58,19 +58,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,22 +85,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14998" ], "x-ms-request-id": [ - "43ff3298-25c1-4d43-8cbd-d5882b631690" + "336ad836-bfd2-4987-95c0-152e994192f9" ], "x-ms-correlation-request-id": [ - "43ff3298-25c1-4d43-8cbd-d5882b631690" + "336ad836-bfd2-4987-95c0-152e994192f9" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193431Z:43ff3298-25c1-4d43-8cbd-d5882b631690" + "CENTRALUS:20150513T195017Z:336ad836-bfd2-4987-95c0-152e994192f9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:31 GMT" + "Wed, 13 May 2015 19:50:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -115,19 +115,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "739" + "740" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,22 +142,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14997" ], "x-ms-request-id": [ - "24299b51-6292-4eda-bfae-c1e98bbb84ec" + "df5bec19-408a-42b8-a9c8-70c3fb331d97" ], "x-ms-correlation-request-id": [ - "24299b51-6292-4eda-bfae-c1e98bbb84ec" + "df5bec19-408a-42b8-a9c8-70c3fb331d97" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193432Z:24299b51-6292-4eda-bfae-c1e98bbb84ec" + "CENTRALUS:20150513T195018Z:df5bec19-408a-42b8-a9c8-70c3fb331d97" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:32 GMT" + "Wed, 13 May 2015 19:50:18 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -172,19 +172,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "727" + "728" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,22 +199,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14996" ], "x-ms-request-id": [ - "7d6735d6-21fd-41bb-a242-c8ab1970cf22" + "5fe61ff5-80e3-49ef-a4d7-58f6331b59c2" ], "x-ms-correlation-request-id": [ - "7d6735d6-21fd-41bb-a242-c8ab1970cf22" + "5fe61ff5-80e3-49ef-a4d7-58f6331b59c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193433Z:7d6735d6-21fd-41bb-a242-c8ab1970cf22" + "CENTRALUS:20150513T195019Z:5fe61ff5-80e3-49ef-a4d7-58f6331b59c2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:32 GMT" + "Wed, 13 May 2015 19:50:18 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -229,19 +229,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -256,22 +256,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14995" ], "x-ms-request-id": [ - "da387817-7bd3-420e-8fbc-527334fc490d" + "8d0d395c-a590-4eb3-990a-e0874902547b" ], "x-ms-correlation-request-id": [ - "da387817-7bd3-420e-8fbc-527334fc490d" + "8d0d395c-a590-4eb3-990a-e0874902547b" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193433Z:da387817-7bd3-420e-8fbc-527334fc490d" + "CENTRALUS:20150513T195020Z:8d0d395c-a590-4eb3-990a-e0874902547b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:33 GMT" + "Wed, 13 May 2015 19:50:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -286,19 +286,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "582" + "583" ], "Content-Type": [ "application/json; charset=utf-8" @@ -313,22 +313,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14994" ], "x-ms-request-id": [ - "947f627a-2723-4860-a033-b2455a63d017" + "f3948bf7-534a-428d-95d2-c760a6d509ed" ], "x-ms-correlation-request-id": [ - "947f627a-2723-4860-a033-b2455a63d017" + "f3948bf7-534a-428d-95d2-c760a6d509ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193434Z:947f627a-2723-4860-a033-b2455a63d017" + "CENTRALUS:20150513T195021Z:f3948bf7-534a-428d-95d2-c760a6d509ed" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:34 GMT" + "Wed, 13 May 2015 19:50:21 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -343,8 +343,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -352,10 +352,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -367,13 +367,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i4Cjy0Rm3dU5EwgdJFsHVUFiI7cBL4KFGb+3zXKTCts=" + "CdWf+KQ8rNUY6Cs/1EB1P+DV8rlzDKmNZ4X8wEwAsRw=" ], "request-id": [ - "c33aee17-5cb4-4062-a3f0-ce439f54d496" + "75ef2747-fb17-4f29-a753-57680a91e0da" ], "client-request-id": [ - "19d38fac-e3d5-4af2-96d4-f80fa36d5b03" + "7c9251fa-3992-4451-a00e-864c8883992e" ], "x-ms-gateway-rewrite": [ "false" @@ -382,7 +382,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "qjRKlEksg-Y4Xpegd11INSg5dvHjX4Olmd4a1nLAv1rn1Dy7mWSqQrfJ5xNMtwdLIY9vSIQwL0F-BNfnARGr-e_dB9vp88kfmEzTCsdt_le2Bb40dc8eCYiZK3mjNtcx.ASTm-8YmeoiHMdJBhSVEMTNCEWVOi-TrPH8omqBQSD8" + "RBIPHKUIadH2rSPG3rOWxbWerNX3zlOCPo_b25psOPg6YyKc_k59Ano43oZpJgVz8tQOfUyUQcsYPOPuiG98quvn_sB7NsraJC8Fn6Gli19W4HosmzIzvTK7KiMfrfl5.jfeAztnd-J7cbi0CST3aRmvtRbOZn8fJP8SOwQPYKes" ], "X-Content-Type-Options": [ "nosniff" @@ -410,14 +410,14 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:09 GMT" + "Wed, 13 May 2015 19:50:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -425,10 +425,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -440,13 +440,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "pcEjtggFbO+fm3HKUqvGP5lzCwUVwGtyMML/tOx4RCQ=" + "iuPmgCujsBOHP5ZHyhzOWZQ0FRP7jUfzbegvNsa5PFc=" ], "request-id": [ - "626c55c6-0290-4fe8-bffb-f554f69dddb4" + "f7bbc316-c593-4ce5-b739-529de10f059c" ], "client-request-id": [ - "89ccfbb9-5f48-430d-96fc-18e6e5e1b7ce" + "948597aa-4656-426d-a5eb-07d68c8cdf75" ], "x-ms-gateway-rewrite": [ "false" @@ -455,7 +455,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "V5_4MLruzhPB1JQtiZUzK_sp18Ln4hHywHv85yEGUQlbs-aLcabQHlXg5JaBueHXqQRsmUuL8ZJmG4VrCE1ACe-KcCEha4VrzzMxPwwB5qvHA6YCFATFa9v7w77gnYCQ.ySusICVJNjTI7XyRiJRNwq0N-1iJvfLoJ7_EJWpVfMA" + "jKiQkMOgAQLUz58sjvXhDEJPFchEC6i1Ms5q7CdiJBneyAb2KdgtIqr-TrxI73ZD8tNdJGPWzcOWR6KAnWgCpyqNFlYJI6LHtnFcDOIu0pbEn00KpKiCEdApJ0CbMeCV.rMcDGbkhuYoqRzjzvCCsHYY5T2nD21g1uMSUbnIiQkA" ], "X-Content-Type-Options": [ "nosniff" @@ -483,14 +483,14 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:12 GMT" + "Wed, 13 May 2015 19:50:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,10 +498,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -513,13 +513,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + "11iwt901UN/FNchIH/Wpv/gMabTDDEDeFFgUOM8Kv5w=" ], "request-id": [ - "998b215c-cb61-4240-9bde-137139f41c29" + "969e29f9-9d3b-404a-b7e4-a29233d8728d" ], "client-request-id": [ - "9aef8f8b-f542-401d-b020-ef2379126fe3" + "2721b29b-4c3e-4065-869d-67da5d767664" ], "x-ms-gateway-rewrite": [ "false" @@ -528,7 +528,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "P_m9tjVO2gCeA_HHMktlAAmcnrsK5cPHNIql7_wKF9jX7n8x4z_lMbdvlelac4tOw33pGeg7KvQmsZhD7B8eb9y6L_WfiBebGuQiB_nGR5ctWeW476OvTBI0r66GH7fb.qS2egeDiWLh17a1nUTOulkl0uyyv79JSltKQbORqE-8" + "GZLGFWyycLIfpbbvibWGyT7DmJxd75D4dsPApeZtdB6h6AhIhgJY5fO2mKIo5cgmfmGOB1nt8gzFamNgfeUqQrDm9FmDMVM8h1o0R321eLAdfFlT8Fx_TdFfDgrVceEq.zA8icWVDnuBgN2HxWLKRsw6sctfIbCRJXbAOTUhe-wE" ], "X-Content-Type-Options": [ "nosniff" @@ -556,14 +556,14 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:15 GMT" + "Wed, 13 May 2015 19:50:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -571,10 +571,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -586,13 +586,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "pcEjtggFbO+fm3HKUqvGP5lzCwUVwGtyMML/tOx4RCQ=" + "11iwt901UN/FNchIH/Wpv/gMabTDDEDeFFgUOM8Kv5w=" ], "request-id": [ - "bc4b5795-1b17-45b0-865e-fbd5018918cf" + "8caff95c-4e5c-4f90-80ab-081dcf21796c" ], "client-request-id": [ - "ebcdc8cf-68aa-4df0-ba47-ad2ed611fc06" + "addeea98-8ae9-4365-b3bf-4d505deeb801" ], "x-ms-gateway-rewrite": [ "false" @@ -601,7 +601,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "S5K_KXIvqRTOn73aT7l7FUBKXffC3XN4bU2hP2pkVFX2TWtc8UWqgCyJjfQb8Bdlvn5XS6xmgBTef9Ja93e-2AoXFSzQcNEzNoR6mNcU1msXrpQQ-0L3reXCb15Xr6mH.vMDOAa5WGysujL-Z1mzZjXHQH0C3lFtqmxaqIZi60-Y" + "D67OD9dO-Lt0wKIQ-SLKIIBBFJXEvy6k08uj0Df19Z_VVXckQ522cvRFFUwZpQE0m-KBiNi1swAfydNicij7hq9Cc3booBj1SeS32FYrpP6FN_lfUDFICUeb7FT0fhU4.PESxjQFN-ghfrtdHybaQKprl2uwHl9rtNvw2ljXD27I" ], "X-Content-Type-Options": [ "nosniff" @@ -629,31 +629,31 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:16 GMT" + "Wed, 13 May 2015 19:50:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "325" + "326" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -671,19 +671,19 @@ "1199" ], "x-ms-request-id": [ - "34a3a2b9-e653-479f-9838-8100e2f62f08" + "18b02634-c31d-4aa4-9d6f-95def75aa09e" ], "x-ms-correlation-request-id": [ - "34a3a2b9-e653-479f-9838-8100e2f62f08" + "18b02634-c31d-4aa4-9d6f-95def75aa09e" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193431Z:34a3a2b9-e653-479f-9838-8100e2f62f08" + "CENTRALUS:20150513T195017Z:18b02634-c31d-4aa4-9d6f-95def75aa09e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:30 GMT" + "Wed, 13 May 2015 19:50:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -698,25 +698,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "984" + "985" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "739" + "740" ], "Content-Type": [ "application/json; charset=utf-8" @@ -734,19 +734,19 @@ "1198" ], "x-ms-request-id": [ - "ffa88516-66a6-4339-923b-06726f97fd65" + "e2a7d39f-5dc8-4705-bfb9-06a2ccef1aaf" ], "x-ms-correlation-request-id": [ - "ffa88516-66a6-4339-923b-06726f97fd65" + "e2a7d39f-5dc8-4705-bfb9-06a2ccef1aaf" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193431Z:ffa88516-66a6-4339-923b-06726f97fd65" + "CENTRALUS:20150513T195018Z:e2a7d39f-5dc8-4705-bfb9-06a2ccef1aaf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:31 GMT" + "Wed, 13 May 2015 19:50:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -761,25 +761,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "958" + "959" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "727" + "728" ], "Content-Type": [ "application/json; charset=utf-8" @@ -797,19 +797,19 @@ "1197" ], "x-ms-request-id": [ - "c896fc94-a4ad-4979-a0d1-b4bf061d6885" + "b052b087-e678-48f4-8c16-35ef488b6f23" ], "x-ms-correlation-request-id": [ - "c896fc94-a4ad-4979-a0d1-b4bf061d6885" + "b052b087-e678-48f4-8c16-35ef488b6f23" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193432Z:c896fc94-a4ad-4979-a0d1-b4bf061d6885" + "CENTRALUS:20150513T195019Z:b052b087-e678-48f4-8c16-35ef488b6f23" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:32 GMT" + "Wed, 13 May 2015 19:50:18 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -824,25 +824,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "894" + "895" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -860,19 +860,19 @@ "1196" ], "x-ms-request-id": [ - "0df4aa56-0e02-4ad8-a1da-c40c358d3208" + "d7d22a97-0a34-44da-8470-5b685bd6e5e7" ], "x-ms-correlation-request-id": [ - "0df4aa56-0e02-4ad8-a1da-c40c358d3208" + "d7d22a97-0a34-44da-8470-5b685bd6e5e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193433Z:0df4aa56-0e02-4ad8-a1da-c40c358d3208" + "CENTRALUS:20150513T195020Z:d7d22a97-0a34-44da-8470-5b685bd6e5e7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:33 GMT" + "Wed, 13 May 2015 19:50:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -887,25 +887,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "564" + "565" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "582" + "583" ], "Content-Type": [ "application/json; charset=utf-8" @@ -923,19 +923,19 @@ "1195" ], "x-ms-request-id": [ - "788485b7-cb76-43ed-b569-3f08a959b35c" + "784a62b8-b6d4-4ad3-82a7-de245befb6d4" ], "x-ms-correlation-request-id": [ - "788485b7-cb76-43ed-b569-3f08a959b35c" + "784a62b8-b6d4-4ad3-82a7-de245befb6d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193434Z:788485b7-cb76-43ed-b569-3f08a959b35c" + "CENTRALUS:20150513T195020Z:784a62b8-b6d4-4ad3-82a7-de245befb6d4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:34 GMT" + "Wed, 13 May 2015 19:50:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -950,25 +950,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzM0MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0OTQ2NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "325" + "326" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg3431/providers/Microsoft.KeyVault/vaults/pshtestvault9465\",\r\n \"name\": \"pshtestvault9465\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault9465.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,19 +986,19 @@ "1194" ], "x-ms-request-id": [ - "e117dad3-c93f-4b8b-b830-b09b0caad196" + "560ea053-f85e-4017-85a5-d6b6147b0e91" ], "x-ms-correlation-request-id": [ - "e117dad3-c93f-4b8b-b830-b09b0caad196" + "560ea053-f85e-4017-85a5-d6b6147b0e91" ], "x-ms-routing-request-id": [ - "WESTUS:20150423T193435Z:e117dad3-c93f-4b8b-b830-b09b0caad196" + "CENTRALUS:20150513T195021Z:560ea053-f85e-4017-85a5-d6b6147b0e91" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 23 Apr 2015 19:34:34 GMT" + "Wed, 13 May 2015 19:50:21 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1013,8 +1013,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1022,10 +1022,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1037,13 +1037,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "NmOhVwUmxtMXE2yVTyo+Rgxuh4SzBZla+ESSAHIGDQ8=" + "CdWf+KQ8rNUY6Cs/1EB1P+DV8rlzDKmNZ4X8wEwAsRw=" ], "request-id": [ - "dc2584d9-12e1-4b78-bbc9-a5945c661bd2" + "95cd8b62-7453-4e19-b61d-a71cca6d27fd" ], "client-request-id": [ - "2e5da130-3a38-4768-9498-031c3ce70336" + "fe5db600-fc1d-4650-87bb-396ac4ae3b40" ], "x-ms-gateway-rewrite": [ "false" @@ -1052,7 +1052,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "eQt73GCOiQB5V8BOzjWUOw4tL7zUtYJcf39tqpIRHk1DXAAUgcSZWV8f5qiUcdbeeisJ1h1seqQH_Q1-dTCnbWIoS49NfQ5OwSwgIcUl0TFWaVnFMMLp-Dojd2fKI07J.74hRptXIrKZxh2BAXYuStTWtbqStk8MnJA1jZgg-aL4" + "XAvr7OLlTwQeraP4cBSa8Bv6elDgMuIQirOyOIOGvIEjwspeLHEsvJZXaNmLr-THs_NpXGKjTjo-iL0bm009uvrbmzudXPdRaMQvfCl-GTie9aG4AgJ6BaOKGF4mfy-4.96IWQ8ouJ8veC_eAOYiLQ92RITnQ_J3n5BOUQxRQHNs" ], "X-Content-Type-Options": [ "nosniff" @@ -1080,14 +1080,14 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:13 GMT" + "Wed, 13 May 2015 19:50:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1095,10 +1095,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1110,13 +1110,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "NmOhVwUmxtMXE2yVTyo+Rgxuh4SzBZla+ESSAHIGDQ8=" + "CdWf+KQ8rNUY6Cs/1EB1P+DV8rlzDKmNZ4X8wEwAsRw=" ], "request-id": [ - "01336c8c-6371-4c6b-8fee-84e0dd4c05a7" + "d97e3ce5-1f89-41a7-a999-19875fe970b3" ], "client-request-id": [ - "7da4ecd8-c46a-42b6-b2ff-80cc3c501429" + "e078e51f-58c2-498d-b7b6-0728cfd1615c" ], "x-ms-gateway-rewrite": [ "false" @@ -1125,7 +1125,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "vNlcB8ox4A0fOzU1-MLSAIB6Cec4lY7L0dvdgTpnUtmTEWxz3qtbjTJ4Utr7aTY-VETBIMrs5cvHmiWE7wnoqozo6mXnx7fpJ52DhOLpjVAcf4-xzJa3JL7klyGEBTqf.repXgvfExxaX4kKf9u3nP4BSP_mCC0rLaCw0Fnvjo6s" + "7u2T2LDBA4gNzhqQvEYit2ZFDjpzzIsrDvZypMRG-fhdtOjwtUnpfJYDFTAerVQwlsPuzl4kSoFw-y79_tPcli6aa2Qr3TRco9qjetwmtLsZqLI39OeDkq6BGFW9XyqP.hwLlZ2hpEL6jvPKnVxReuidTevRQVRMCbUSOXfdLW2w" ], "X-Content-Type-Options": [ "nosniff" @@ -1153,14 +1153,14 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:13 GMT" + "Wed, 13 May 2015 19:50:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1168,10 +1168,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1183,13 +1183,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "NmOhVwUmxtMXE2yVTyo+Rgxuh4SzBZla+ESSAHIGDQ8=" + "iuPmgCujsBOHP5ZHyhzOWZQ0FRP7jUfzbegvNsa5PFc=" ], "request-id": [ - "152a7ba1-e884-4cea-a79e-63e4bb707b91" + "8f51c9a6-3a58-4451-bb76-350a8b278abb" ], "client-request-id": [ - "60c08f2a-db1f-49e7-b160-2801221e81aa" + "82487986-a1c5-4801-a573-89b8e468034b" ], "x-ms-gateway-rewrite": [ "false" @@ -1198,7 +1198,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "XsfmE9jgC_wY1eQ61hKAgs62AiW-TLyL-s6Dt3COubBuUDEYQTWjYRrv91TTXXxyGO-CUg4Q75dpEgblq2Anb-aW_b7E0Qunv0-wXw_FcatfS5SX02omeqtlLB7d9YxC.tJGyF_lqyBJyRgrsAaXjvoy7r-OvKkZow16tR0geaAM" + "_hANq_xNEkAS25XW9mULgCQmVuSvqV3sdMV7SBXblDBDw_OHbxCMEC5o5g5fH94PcJ86bHURaVUmbQc-dNXtdb4n96AY1v224kwcwRtFr_FLV51QGl9by2bRcc7yz8do.kcd-u5NU2WDO878dqb0JaAwDlZYkH6D-NmfWDBhLemE" ], "X-Content-Type-Options": [ "nosniff" @@ -1226,14 +1226,14 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:13 GMT" + "Wed, 13 May 2015 19:50:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1241,10 +1241,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1256,13 +1256,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "pcEjtggFbO+fm3HKUqvGP5lzCwUVwGtyMML/tOx4RCQ=" + "OwiQwVxuZXWAznx4rYbzGrX1SXicMuwxX8McepXFTKk=" ], "request-id": [ - "4d00d80f-59ef-4d2b-82e4-89a5e202ac71" + "2c08dd18-b98e-4d4b-a7c7-bb0fe5f19380" ], "client-request-id": [ - "2817dfbf-0fef-4f2c-bffd-a1ae59fe8c06" + "0e56952f-2362-4d3c-bf6b-b2980758dcce" ], "x-ms-gateway-rewrite": [ "false" @@ -1271,7 +1271,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "3tXpTj2aBBZY7eYSk1Uzpb1h9wSTIYHZUP7mcl0q0V5cfuLyge-Y-eStcufJzogp113kbEMv9Qy7h4NIj0nXZc8k6_o2IzRLJBTRoN50ontWMvp7YOy7iQ08kIEbuObo.3PUnG-Ic9xjhI7sOd8Rb1hlqQyEaMq5YijIfCz6wWqc" + "pkgkyat8EmRfEvI-yR6sQIWF0pRVYQgRKUTCS6tXsHcznflsUOCHPRFK6pfV33mejXdD2EX2ss1T2JwFbxhAjeC9BAw4_InFnOjkyHCDN4H1dxw25lNhwDdeI4DCtI3z.-AYI8kF3rwZ35U75EMMpHS2gS-VPALegi4ToDYbB9UQ" ], "X-Content-Type-Options": [ "nosniff" @@ -1299,14 +1299,14 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:14 GMT" + "Wed, 13 May 2015 19:50:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1314,10 +1314,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1329,13 +1329,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "NmOhVwUmxtMXE2yVTyo+Rgxuh4SzBZla+ESSAHIGDQ8=" + "75ShSHQOKYDfqrCwgjP19v5Gc0xT9jfEGVxJuWp38PQ=" ], "request-id": [ - "9d34da1c-5604-4186-89a4-d0655bc8742f" + "e9740582-2b58-4738-b5a1-a692fa214149" ], "client-request-id": [ - "9b6a2117-95e3-4ed3-9809-ac6d96d04a47" + "46433bf4-a73e-4242-af88-bf2c8b8b95c2" ], "x-ms-gateway-rewrite": [ "false" @@ -1344,7 +1344,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "2gEVkI17sMFHNYC84pZ8lKSFYNfnBqzEfaO4iFT8ws1_ZhtL67hJMZ3WO9HFq0NTE7-FHYg_6bc-ds81RFIx2u27KoYI8iulSdntT034OE5XatL4h7FLry109VL_-2OA.TLk76Y7GtJEfi7bohOB4bX1iNepe3FWsl_HHdMdfto0" + "19HRmtrTaOAoHf8uBmckIbRmHqA0ogfOEi9tUk1KzNYjd-ZsqDXA70paw7vXTcPXAYLw0-BeMysqp3CerWqOvKa4gQVuPU98dM4hqBHUqqaxkVvO4JgjRzX5IPr31rie.wzTSsCCc9eL7DTWr-k-Bu14LQ_wHSbRPfVdc2sb65TM" ], "X-Content-Type-Options": [ "nosniff" @@ -1372,14 +1372,14 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:14 GMT" + "Wed, 13 May 2015 19:50:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1387,10 +1387,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1402,13 +1402,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "pcEjtggFbO+fm3HKUqvGP5lzCwUVwGtyMML/tOx4RCQ=" + "iuPmgCujsBOHP5ZHyhzOWZQ0FRP7jUfzbegvNsa5PFc=" ], "request-id": [ - "9ce324ff-ccdc-4748-9515-feb3eda172e5" + "7e2f2c19-05b0-4594-bd35-2987507c3664" ], "client-request-id": [ - "2895e5cf-e01a-4249-9bf6-6f17d042dc35" + "d182f541-e99c-4cc1-a6b5-4ef1f8dfcc22" ], "x-ms-gateway-rewrite": [ "false" @@ -1417,7 +1417,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "bKy8-CxsP3bUEBMaQuWJ_8mQ_3bMdVB1gw_IXGSwRmDF0GxAR57CJp10y7iA0A-xIdYmVtaaLQGeQNluGg_xztZhR6mYsATjLNzWY9mkkNYXVuBZxeEDyTPX0Y2x38oQ.n1_C12sCvXD6m0OxUrZ465Ip3IR1dkvEjGS2G5ppmjA" + "jf6FCUnPmvyisgSoNNvgUVixZM1HNBTNfLxRlHOlxN0BL1J_CuhIPFFe6pU6t1uFtrC2gu249CjeAhBSQQOTtshwA1lJEZtUFJnTu0VncHUfB9WQyaP_LncitWBqrjpO.jjYscrXbJREyBicAsct_Zyy_xEhpXZmV6IeEC2cWrVk" ], "X-Content-Type-Options": [ "nosniff" @@ -1445,14 +1445,14 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:15 GMT" + "Wed, 13 May 2015 19:50:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,10 +1460,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1475,13 +1475,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VE96ymV+N7+qIsCyCRMEXtWtFdJRAMYbA69ATN4L+b0=" + "11iwt901UN/FNchIH/Wpv/gMabTDDEDeFFgUOM8Kv5w=" ], "request-id": [ - "e73249ca-24de-4511-acf9-e7a1a0c9c31f" + "463a09da-2f16-425c-b6d0-69881f731268" ], "client-request-id": [ - "c5af36f3-b8c8-451b-9bad-9bff99db8c7f" + "c90b65bf-9bb8-4da9-85cb-2f2bfe26dc2b" ], "x-ms-gateway-rewrite": [ "false" @@ -1490,7 +1490,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "G69-7Xk_i0XuKNn4fwJqxGPbYhGLmar_q66LsyHWvMGRaCi2MbeLOQlc2QP8gVLlcwbgcj9IkqWMklpgJrE-tRc9e_4gByN9Pfa34B5a0Vr-F2GitWfXZQTVeN7Qi8X6.b92zkIKl10caoTFIhrozY8VDDffxdDEIhc3iiZA678w" + "HwEs3Jir2y7ZRsLmiURW034ZizUFmxi-sE_ydPq5V2FTk1OL8Wh97Qx1iLis6QwfYioJZg11k0OIpGGyZLuoEvNhB3GNG_hxwKd9Ebl2_tcAm-9r5TpOxno5H-vc7Z9u.O1IhZoyDmpsPbBffB_einKY2bOdSIqtdu4vLMwYs3Cw" ], "X-Content-Type-Options": [ "nosniff" @@ -1518,7 +1518,7 @@ "ASP.NET" ], "Date": [ - "Thu, 23 Apr 2015 19:34:16 GMT" + "Wed, 13 May 2015 19:50:20 GMT" ] }, "StatusCode": 200 @@ -1526,12 +1526,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg3431", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault9465", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", - "User": "kmsngtu@microsoft.com", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", + "User": "divyag@ntdev.microsoft.com", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com" + "Domain": "ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyEnabledForDeployment.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyEnabledForDeployment.json new file mode 100644 index 000000000000..c0f7a20b6e8c --- /dev/null +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyEnabledForDeployment.json @@ -0,0 +1,770 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "70e3bbfc-6453-4fc2-ae2a-ddf8c2245b41" + ], + "x-ms-correlation-request-id": [ + "70e3bbfc-6453-4fc2-ae2a-ddf8c2245b41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194902Z:70e3bbfc-6453-4fc2-ae2a-ddf8c2245b41" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:49:01 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "f6bf1384-dcf3-41f5-a99b-12c1b2b28be0" + ], + "x-ms-correlation-request-id": [ + "f6bf1384-dcf3-41f5-a99b-12c1b2b28be0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194903Z:f6bf1384-dcf3-41f5-a99b-12c1b2b28be0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:49:02 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "b8809b88-153a-417b-9a9d-959ff7d7666c" + ], + "x-ms-correlation-request-id": [ + "b8809b88-153a-417b-9a9d-959ff7d7666c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194905Z:b8809b88-153a-417b-9a9d-959ff7d7666c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:49:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "448" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "50fe144d-0a40-4a4a-a429-211a38a4eb44" + ], + "x-ms-correlation-request-id": [ + "50fe144d-0a40-4a4a-a429-211a38a4eb44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194906Z:50fe144d-0a40-4a4a-a429-211a38a4eb44" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:49:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "739" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "5d87535e-d448-47c4-898c-3f8293f7ce23" + ], + "x-ms-correlation-request-id": [ + "5d87535e-d448-47c4-898c-3f8293f7ce23" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194907Z:5d87535e-d448-47c4-898c-3f8293f7ce23" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:49:07 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "325" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "760c2f36-249e-4da7-ba47-6097a0b6f5cc" + ], + "x-ms-correlation-request-id": [ + "760c2f36-249e-4da7-ba47-6097a0b6f5cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194905Z:760c2f36-249e-4da7-ba47-6097a0b6f5cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:49:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "326" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "448" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "6e3e2412-77d5-4f63-8c3e-7955426adbd6" + ], + "x-ms-correlation-request-id": [ + "6e3e2412-77d5-4f63-8c3e-7955426adbd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194906Z:6e3e2412-77d5-4f63-8c3e-7955426adbd6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:49:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "984" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "739" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "84cd29f2-fb54-4dc5-89cd-9e5d3f2e2e8c" + ], + "x-ms-correlation-request-id": [ + "84cd29f2-fb54-4dc5-89cd-9e5d3f2e2e8c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194906Z:84cd29f2-fb54-4dc5-89cd-9e5d3f2e2e8c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:49:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "326" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "448" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "115e1dbd-4e26-42e5-8a7d-49e25d8dd969" + ], + "x-ms-correlation-request-id": [ + "115e1dbd-4e26-42e5-8a7d-49e25d8dd969" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194907Z:115e1dbd-4e26-42e5-8a7d-49e25d8dd969" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:49:07 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" + ], + "request-id": [ + "d3fbb637-c65e-4283-8e10-8017e411479d" + ], + "client-request-id": [ + "36518778-0b55-45fa-aca4-3c77671064f9" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "jY3Yfm_54Plur_udmAiljnHN4APcEwHV-tOQMYtfaDUqn5tiNpss8rXY4eRDlJVlilKbrV3V0GKilu4kW5NQx1LXt16aTqbjcV_CMUYGCC6bzbTRoT77tVoXndF842G7.YZCwNhDr16-qocM8KJU2Ap-VpAMUyw-HmG1Dz5m1P2w" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:49:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + ], + "request-id": [ + "d88018c0-25e1-4056-9958-b51cff0741b3" + ], + "client-request-id": [ + "50d1ac72-2c56-48ea-9ce7-5d596b1d4149" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "7b2burs1D25J6t0v0a21Qh2hPP9wtEeIPDv_TO-7iYyBabdn15CmbNIINUqTLlpT5zjcEi7SGo_pw2oniNc8dn9cTkxtAnUUBoeNg-AtR67gySx-w-bMOXrw5Zcvz260.0Ip0gaFJNJdsq4OBonWtHLa_S84aos4aF9TYmnADmtE" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:49:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" + ], + "request-id": [ + "c810388b-381a-43a8-b7a1-0c4276de8cf1" + ], + "client-request-id": [ + "abde6f46-3712-4c16-a09f-0ef0fa2f17e4" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "6W-2qJ2ned5cbcL57CK6uDiAGiBRh4n96pM5nmjFDoVV5ImXyyEJwhdocdNvq6iT-VgX0ajedp7Imnv8TboJmAZXUhLIWKgGVdiTwvxwBM-OblMC926DoPiHiN6GRP7z.mR4HVmhjelLhQClEAEtygk892abWN4LhJyWf0-QxdY0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:49:07 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "ResourceGroupName": "pshtestrg6041", + "Location": "northcentralus", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", + "User": "divyag@ntdev.microsoft.com", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "ntdev.microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json new file mode 100644 index 000000000000..f95bc670a08f --- /dev/null +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json @@ -0,0 +1,534 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "0b1f283e-d64c-4799-8b7e-6d4af895ceb0" + ], + "x-ms-correlation-request-id": [ + "0b1f283e-d64c-4799-8b7e-6d4af895ceb0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194601Z:0b1f283e-d64c-4799-8b7e-6d4af895ceb0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:46:00 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "f6c25182-2282-4895-bb81-dcc74e5a0fa4" + ], + "x-ms-correlation-request-id": [ + "f6c25182-2282-4895-bb81-dcc74e5a0fa4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194601Z:f6c25182-2282-4895-bb81-dcc74e5a0fa4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:46:00 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "6fb75cb3-f5f2-46c2-b464-a28dcf44c1df" + ], + "x-ms-correlation-request-id": [ + "6fb75cb3-f5f2-46c2-b464-a28dcf44c1df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194601Z:6fb75cb3-f5f2-46c2-b464-a28dcf44c1df" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:46:01 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "5a49b3c3-e7c3-41b3-ad53-bc6a99004f96" + ], + "x-ms-correlation-request-id": [ + "5a49b3c3-e7c3-41b3-ad53-bc6a99004f96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194602Z:5a49b3c3-e7c3-41b3-ad53-bc6a99004f96" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:46:01 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "FpbEqwjNE5UgQMRKJCh+5oT77dK8Xy2HF5eIvb2XUK4=" + ], + "request-id": [ + "4a747a4b-2cef-4f79-9ea1-f7c0b1d10eda" + ], + "client-request-id": [ + "a744592f-0a1c-4704-8de1-14ce0c6b771a" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "3Fj9mI0jvN9qWcCW1d1ITEn_GJLCejBkn8_g3ftXJm4r5l5mW4N6lJDklHj3fQIh8rfI62EMYWeWZSJrOZli831l-j1lBwPLu7xPEGERPcfpTD10Ec4Qs2SIAniF2L_Q.t2V8iaNFtply-c1Dca6WACSMzEZuFhbMdUnCaoxgN_M" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:46:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + ], + "request-id": [ + "67c17302-73b0-42ce-956f-4a556a6e0aa7" + ], + "client-request-id": [ + "b9ea3f94-55f8-4b6d-8378-67a9acedb25b" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "itrR5W9IcwwTH_bMxMJJ4da2cOuwssTa-STD-d7Mb8LVmoeHQXoABTn5V961W1KUwcA6VVjxTROlD3vfJXrbp2e95bD6pVAOU7jZJYNcm4TrL_DVQ6SLBwCUvUxx257e.KPr1Ms-zlMjRrKCyf70pHWMga1C87_Nf6Hj7DycgTfE" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:46:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + ], + "request-id": [ + "592b2f5e-3831-4f44-ad1e-fed2ed714b5c" + ], + "client-request-id": [ + "2e22565f-d920-4948-b7c4-67be0663ed13" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "RKw5YPFMJHUTPsL3FJbA8vOgwFY2inbwe_3KrQ6aBD8dOcPAjlCnC4tAvFpv7U9V7Hq0geAsP2U5Pqd-ZI3NsKyJ8kVzqhlZ4iR0pPNP5XoVzzUveRVOOlZNqJ87NfV-.T1vKN9JljMxVtgm4Pm8uiOOqCH1B5aaFh2zleOChJRg" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:46:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'divyag%40ntdev.microsoft.com')&api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnZGl2eWFnJTQwbnRkZXYubWljcm9zb2Z0LmNvbScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + ], + "request-id": [ + "854e413a-0fb6-4525-b352-9c13bf5ec599" + ], + "client-request-id": [ + "ff08fc42-9d55-4c98-89c4-8ef7c8cdab10" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "Y-wOxm-Ifa3q5tPDayEu-VTUWkueNEpk4lI8Gq8M8kZ41tH7n-yW6xdj6H2ZT3CLqgj1_jEbv3uoPU-2QPOOOEUFE_BBadM8px6kxmWdtgk1qSZeTVZ8OhziEHoC6cLU.FMN6K_3mbNS_mI4D6zJIgnJ8-_uhYONtASHGYaBZkHY" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:46:02 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "ResourceGroupName": "pshtestrg6041", + "Location": "northcentralus", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", + "User": "divyag@ntdev.microsoft.com", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "ntdev.microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRecreateVaultFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRecreateVaultFails.json index 3ec4687d90cb..d32114bb8640 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRecreateVaultFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRecreateVaultFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourcegroups/pshtestrg1197/providers/Microsoft.KeyVault//vaults/pshtestvault6809?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlZ3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL3BzaHRlc3R2YXVsdDY4MDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NoRegisteredProviderFound\",\r\n \"message\": \"No registered resource provider found for location 'northcentralus' and API version '2014-04-01'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "156" + "4987" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,17 +24,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" ], "x-ms-request-id": [ - "f5bd363d-3f03-4bfe-a4ef-aad8872aae83" + "ca3e4ddf-d479-43f3-85ba-918304aa16d7" ], "x-ms-correlation-request-id": [ - "f5bd363d-3f03-4bfe-a4ef-aad8872aae83" + "ca3e4ddf-d479-43f3-85ba-918304aa16d7" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035352Z:f5bd363d-3f03-4bfe-a4ef-aad8872aae83" + "WESTUS:20150513T195427Z:ca3e4ddf-d479-43f3-85ba-918304aa16d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,20 +43,20 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:53:52 GMT" + "Wed, 13 May 2015 19:54:26 GMT" ] }, - "StatusCode": 400 + "StatusCode": 200 } ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveNonExistentAccessPolicyDoesNotThrow.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveNonExistentAccessPolicyDoesNotThrow.json index 05ed7524791b..1715cc432754 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveNonExistentAccessPolicyDoesNotThrow.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveNonExistentAccessPolicyDoesNotThrow.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "468" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14991" ], "x-ms-request-id": [ - "2195a3d3-0254-4983-b9fc-fb4f5323adb2" + "a80eda1a-145f-4afe-9c65-e88503f44f1a" ], "x-ms-correlation-request-id": [ - "2195a3d3-0254-4983-b9fc-fb4f5323adb2" + "a80eda1a-145f-4afe-9c65-e88503f44f1a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035817Z:2195a3d3-0254-4983-b9fc-fb4f5323adb2" + "WESTUS:20150513T195400Z:a80eda1a-145f-4afe-9c65-e88503f44f1a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:58:16 GMT" + "Wed, 13 May 2015 19:54:00 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -58,8 +58,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -67,10 +67,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -82,13 +82,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jScj0D9LuG9lNt/fa5UfFAKwsavkI3rF1e+07pDuN5c=" + "O3ABilcgdwphO4v4fgIn7pexShgiytgPqsA+U8jT/zk=" ], "request-id": [ - "02f77f9f-903e-4825-8d19-63691dd34eff" + "09996c52-fc4f-48a3-868a-44109b71e895" ], "client-request-id": [ - "1c2bd7b1-7a76-4dbe-bdfd-8efb19a5a9df" + "a4a565f1-3ecf-4f70-ad9f-61ee9002ed34" ], "x-ms-gateway-rewrite": [ "false" @@ -97,7 +97,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "XdtHjD9O-4aiFt6pUs5EnILw2ytchZ9EbyGXAP61D6GH_8xSnAAx868-GjWf379mDMew4Gv_ghriptdT7W-njmL8oAjlDZ5Py4y440KkM6O4VReq9c016m8tFkkVfo7p.egAkhYHAYjI2qXOYQlcK-bZ6R3YYhwdZ0TeFOXC0yK0" + "8J7cwO2x7Yi7KZDgD7_AJlyBlCxBRKTk4LBUwubgGxOusmEcXziUvGq4F-lFbE_axy9rChse4lKly42JWQ_THuQRuNS9Dukdrfp2HR7GyqBVsuFEAf-Ig0dDGYhGL9ylioQnaSgYhlyaoS53b7FnJA.Rmmuf7C2fhlxrStwz_qEEXlvdOEUKJL4YpiFrI_OWDY" ], "X-Content-Type-Options": [ "nosniff" @@ -125,16 +125,16 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:58:17 GMT" + "Wed, 13 May 2015 19:54:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -143,10 +143,10 @@ "325" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -164,22 +164,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "6ce754fb-763b-44b9-bc21-0d59ca6f8ae2" + "28343968-ecd1-4120-811a-54b7f61dd100" ], "x-ms-correlation-request-id": [ - "6ce754fb-763b-44b9-bc21-0d59ca6f8ae2" + "28343968-ecd1-4120-811a-54b7f61dd100" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035820Z:6ce754fb-763b-44b9-bc21-0d59ca6f8ae2" + "WESTUS:20150513T195404Z:28343968-ecd1-4120-811a-54b7f61dd100" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:58:19 GMT" + "Wed, 13 May 2015 19:54:03 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -196,12 +196,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", - "User": "kmsngtu@microsoft.com", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", + "User": "divyag@ntdev.microsoft.com", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com" + "Domain": "ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetAccessPolicyNegativeCases.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetAccessPolicyNegativeCases.json deleted file mode 100644 index 1ad5f473993c..000000000000 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetAccessPolicyNegativeCases.json +++ /dev/null @@ -1,404 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "468" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "8b466f08-69c8-45c2-9c72-561fc93ffd86" - ], - "x-ms-correlation-request-id": [ - "8b466f08-69c8-45c2-9c72-561fc93ffd86" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T035436Z:8b466f08-69c8-45c2-9c72-561fc93ffd86" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 03:54:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "468" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "043490c9-55c8-4bc7-bd17-c9cd3f88035e" - ], - "x-ms-correlation-request-id": [ - "043490c9-55c8-4bc7-bd17-c9cd3f88035e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T035437Z:043490c9-55c8-4bc7-bd17-c9cd3f88035e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 03:54:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "468" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "bb660b2c-fe9f-4ef9-8ddb-7cbfc7887bc8" - ], - "x-ms-correlation-request-id": [ - "bb660b2c-fe9f-4ef9-8ddb-7cbfc7887bc8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T035437Z:bb660b2c-fe9f-4ef9-8ddb-7cbfc7887bc8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 03:54:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "5984" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "yq6d6aKCJ+sm/SqomU3oKf9uqw5YY/Xo6jW8af9zAac=" - ], - "request-id": [ - "3d307e06-e122-43de-90cb-7f7ee84449f0" - ], - "client-request-id": [ - "e8b1f9a2-40ff-47d6-8653-92a551370974" - ], - "x-ms-gateway-rewrite": [ - "false" - ], - "x-ms-dirapi-data-contract-version": [ - "1.42-previewInternal" - ], - "ocp-aad-session-key": [ - "f2XXjTYK_-SeSwf7fZ1u1OxsvWi9w2fasprS4Vn48p15f2UQAeNqZQT2SMf2de4su0AxFDnIu2_Yrn-tk_Mj2WWtOStVLa8yBzJ-uk7l5jrQUuvNDjFqJ6SJ-PxtpXQp.f6-M8dh3NspmZ5lDA1st283KeNysZEeRbWfWGSgxrxM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Sat, 18 Apr 2015 03:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "5984" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "O3ABilcgdwphO4v4fgIn7pexShgiytgPqsA+U8jT/zk=" - ], - "request-id": [ - "9d3c2efc-d2e7-4142-91b9-1f18181c5f29" - ], - "client-request-id": [ - "7c0a4345-5ce6-45db-8372-11ad445a15b2" - ], - "x-ms-gateway-rewrite": [ - "false" - ], - "x-ms-dirapi-data-contract-version": [ - "1.42-previewInternal" - ], - "ocp-aad-session-key": [ - "2BPtWNCuTNSH__r3rUeDvRpHAVQcWfz88aQaF_E39wGLUvNF8LMcG1k-tzY7acNDSUlpK0UAjS7pGpXZPkFJ4SgD-mGIC4zPPsNht48mllZKefGTIrcpzM-FlGe9KHC0.dgoiXo_lIyAliQVxpDQICuFIWVG0nCV6o5J-n9leevM" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Sat, 18 Apr 2015 03:54:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "5984" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "CsyM59IyEG8NtoG93Zs1iaZk8m7nLCS/ZIsRW3/qOUQ=" - ], - "request-id": [ - "4216b41d-9c4b-4064-9098-e87fcd4179f2" - ], - "client-request-id": [ - "9d2f4aa5-0963-4f7d-80e7-c0fc4bb02301" - ], - "x-ms-gateway-rewrite": [ - "false" - ], - "x-ms-dirapi-data-contract-version": [ - "1.42-previewInternal" - ], - "ocp-aad-session-key": [ - "3ySbIwK4Z7OYzihxJCOgrCNHXcr52WYaGgXlloScQ40DGQLD_KUg-aMYvJn-H1BrF0xrccvH3jajWNKrVxZQZiRZppVYqzwGZHS4GP1ikuhN9mjfpQNwqIj7ULe227gv.-aledDLmnE_SHXFE9e0TQtZXE4tQE-Stv4x_uLIiG_s" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Sat, 18 Apr 2015 03:54:38 GMT" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "ResourceGroupName": "pshtestrg1197", - "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", - "User": "kmsngtu@microsoft.com", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com" - } -} \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByObjectId.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByObjectId.json new file mode 100644 index 000000000000..2250df5392ba --- /dev/null +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByObjectId.json @@ -0,0 +1,546 @@ +{ + "Entries": [ + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "dS5n1gIKpvuVz70gIQwT3GyktIuQo1lHcmSA2GJAH2A=" + ], + "request-id": [ + "05bd4c0a-9c03-4217-a0fb-25dedfc2b9ab" + ], + "client-request-id": [ + "a1e1d9d0-df81-40fe-9930-c621ebff5288" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "ehhq-QbLBylL2ocngZlrAxvdMG6fAymx36oj9V9YFn7gfEpojcpuX-shPxPZ1t6ucil7vqWHQ3y9vHQtRLlTROWijac-g8MZxJ4amTOCsjiDdgwtHPuKgutqsnHeQiO3.9J7g3K5kviOtr-vXqC5sZ7I2vbPJw_WIrRQB2ESaknc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:46:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "4ec69cd6-7ef1-4b0d-b562-3e846541dece" + ], + "x-ms-correlation-request-id": [ + "4ec69cd6-7ef1-4b0d-b562-3e846541dece" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194636Z:4ec69cd6-7ef1-4b0d-b562-3e846541dece" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:46:36 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "b6c5fdea-4e3f-41fc-9056-b9ca645ad9d9" + ], + "x-ms-correlation-request-id": [ + "b6c5fdea-4e3f-41fc-9056-b9ca645ad9d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194639Z:b6c5fdea-4e3f-41fc-9056-b9ca645ad9d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:46:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "dS5n1gIKpvuVz70gIQwT3GyktIuQo1lHcmSA2GJAH2A=" + ], + "request-id": [ + "496fc03e-9aa4-4525-bc93-4d83edb1c151" + ], + "client-request-id": [ + "002252a7-fbd8-46cf-960c-8e44a40244c4" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "jqp2PzJi15qH34LvJ293grmjZYg1fFIfalkTpj_A23a0sdLiplWeiEMi3V0kCkip3fIVMEq7tYn3ZVYGFdid7GqRPLHRLU9JLpi_9WK1BFoM3szwABJhvc_5eV4Skd43.Fc6UAvk11uJRv--nU4jx-Hk9x566a5rbblkg3PAzBcs" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:46:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "gqiNgf5NlZ7CoKlKn6ksAAz0DY2Obmmx+EN7hzvHgo4=" + ], + "request-id": [ + "880ee482-ab1e-4515-a909-fb96c31c330f" + ], + "client-request-id": [ + "f92d7af8-a13d-4852-8734-49f34a38acbb" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "iaryTtDEDE_6--QPM5mRSCrMxzLV3Gsc7GGniCHe5gH_6KJML8EzQLmce9Q3B0wbMm6PswrFbx01zynyKuMO1r-EJbfCf2ruyGDdDokyU5DVFqpX7OT9e85IsqwD2yVD.z_OB7bMdHv4oQ2t7f_NKeXryemzCz2e4iwhwqIqYGPo" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:46:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7215" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "dS5n1gIKpvuVz70gIQwT3GyktIuQo1lHcmSA2GJAH2A=" + ], + "request-id": [ + "93a80b26-dc08-4b5a-94e2-9b8353129bcb" + ], + "client-request-id": [ + "de2d888b-4019-4107-9d5d-000e402ee294" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "TsY_o3smwjkbgxxVS0FwVptfVRs3c0a3L4-dOo1hpPOA5mXWoWVhldwAnzbCxkh-X8DikalNo35izNT2rASTike_FYJzHynB8Ul9poml3zogvi8Feoq8JdpsIMNK5Toj.RMSGRYuQ52YURjh11gK-bT0LUcauJYuszY1T7VqtyXg" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 13 May 2015 19:46:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "590" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "988e8448-2622-4930-a736-28f5da639a9c" + ], + "x-ms-correlation-request-id": [ + "988e8448-2622-4930-a736-28f5da639a9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194639Z:988e8448-2622-4930-a736-28f5da639a9c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:46:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "325" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "db34d540-ca88-4dbc-a2fe-f0fc0e5bd65b" + ], + "x-ms-correlation-request-id": [ + "db34d540-ca88-4dbc-a2fe-f0fc0e5bd65b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150513T194640Z:db34d540-ca88-4dbc-a2fe-f0fc0e5bd65b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 19:46:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "ResourceGroupName": "pshtestrg6041", + "Location": "northcentralus", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", + "User": "divyag@ntdev.microsoft.com", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "ntdev.microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyBySPN.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyBySPN.json index 64fb85a0a88f..89e1b79309bf 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyBySPN.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyBySPN.json @@ -4,7 +4,7 @@ "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/applications?api-version=1.42-previewInternal", "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9hcHBsaWNhdGlvbnM/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"availableToOtherTenants\": false,\r\n \"displayName\": \"adApplication6121\",\r\n \"homepage\": \"http://adApplication6121/home\",\r\n \"identifierUris\": [\r\n \"http://adApplication6121/home\"\r\n ],\r\n \"replyUrls\": [\r\n \"http://adApplication6121/home\"\r\n ]\r\n}", + "RequestBody": "{\r\n \"availableToOtherTenants\": false,\r\n \"displayName\": \"adApplication9126\",\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"identifierUris\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -16,7 +16,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.Application/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.Application\",\r\n \"objectType\": \"Application\",\r\n \"objectId\": \"f0ae6fd5-1175-464a-99d6-c12590a06225\",\r\n \"softDeletionTimestamp\": null,\r\n \"appId\": \"8be9205c-7fef-4a79-bb40-50680db5e6dd\",\r\n \"appMetadata\": null,\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication6121 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication6121\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"686d0fe8-d665-401f-bd97-9042003c2aeb\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication6121 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication6121\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"availableToOtherTenants\": false,\r\n \"displayName\": \"adApplication6121\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication6121/home\",\r\n \"identifierUris\": [\r\n \"http://adApplication6121/home\"\r\n ],\r\n \"keyCredentials\": [],\r\n \"knownClientApplications\": [],\r\n \"logoutUrl\": null,\r\n \"passwordCredentials\": [],\r\n \"oAuth2AllowImplicitFlow\": false,\r\n \"oAuth2AllowUrlPathMatching\": false,\r\n \"oAuth2RequirePostResponse\": false,\r\n \"publicClient\": null,\r\n \"replyUrls\": [\r\n \"http://adApplication6121/home\"\r\n ],\r\n \"requiredResourceAccess\": [],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.Application/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.Application\",\r\n \"objectType\": \"Application\",\r\n \"objectId\": \"37e4fda4-204a-4c9a-8e6b-5a4022851e42\",\r\n \"softDeletionTimestamp\": null,\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"availableToOtherTenants\": false,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"identifierUris\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"keyCredentials\": [],\r\n \"knownClientApplications\": [],\r\n \"logoutUrl\": null,\r\n \"passwordCredentials\": [],\r\n \"oAuth2AllowImplicitFlow\": false,\r\n \"oAuth2AllowUrlPathMatching\": false,\r\n \"oAuth2RequirePostResponse\": false,\r\n \"publicClient\": null,\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"requiredResourceAccess\": [],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1545" @@ -31,13 +31,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QBKI9AbEYiPcuPxP6tzpZblINiB8xjSfl91MBr8+PRQ=" + "PsdA7PkyAvi9ISC2/j5GADuk5Hlkgp7V82CwYNLGNR4=" ], "request-id": [ - "04d7211f-941d-4d69-b8f3-187065ea53d7" + "3de7ebeb-600f-4a63-880c-53420a7b68e3" ], "client-request-id": [ - "50684c9a-1d7b-421c-b09e-b8bee85aa82e" + "f1c1fe29-f3d4-46e2-b15d-e88b5f9b54ea" ], "x-ms-gateway-rewrite": [ "false" @@ -46,7 +46,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "__GMRKhyPItkVuj52egZzEyKcB2XIe7RRWJOKDsQay-HfcCly026yBlMCZl1c9xFcOs0-ONO6403CzUIFltRvnQ4LVcYr13sHhphj3a4NT--qOqQYbkkIVeewo4SRwcBU_wuPr4t9EpMQ1nwL1e6tA.pHL97LfsiO3URs5srXoqT6ln6Eb2JlUSoJdhCp5JPCA" + "MfIqeFwv2WWWTGvhvjI5GhemqSuPNyTG9KC4KXTYayO6nYNNCC3LAuWg4QK5gQ-66pgiWlfaWbGfj-GrTclKWurZ1PgTrzm3KOUVxYcTGE-QXbNM0f8l1rR6Mdp44dMkKML1b9bUsaZgsP33IKwACQ.UHgOeDcyYmSsd1IsKO710z5VohA9FM3V5weusTomIHI" ], "X-Content-Type-Options": [ "nosniff" @@ -64,7 +64,7 @@ "no-cache" ], "Location": [ - "https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/directoryObjects/f0ae6fd5-1175-464a-99d6-c12590a06225/Microsoft.WindowsAzure.ActiveDirectory.Application" + "https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/directoryObjects/37e4fda4-204a-4c9a-8e6b-5a4022851e42/Microsoft.WindowsAzure.ActiveDirectory.Application" ], "Server": [ "Microsoft-IIS/8.5" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:02:03 GMT" + "Wed, 13 May 2015 19:51:20 GMT" ] }, "StatusCode": 201 @@ -86,7 +86,7 @@ "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?api-version=1.42-previewInternal", "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"appId\": \"8be9205c-7fef-4a79-bb40-50680db5e6dd\",\r\n \"accountEnabled\": true\r\n}", + "RequestBody": "{\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"accountEnabled\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -98,7 +98,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"67da70b4-daaa-4959-990f-9d4d8797dc77\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication6121\",\r\n \"appId\": \"8be9205c-7fef-4a79-bb40-50680db5e6dd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication6121 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication6121\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"686d0fe8-d665-401f-bd97-9042003c2aeb\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication6121 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication6121\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication6121\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication6121/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication6121/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8be9205c-7fef-4a79-bb40-50680db5e6dd\",\r\n \"http://adApplication6121/home\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1642" @@ -113,13 +113,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" ], "request-id": [ - "6ff213f4-8fe4-4b00-bb52-989d6f8377a8" + "b6d8e406-c124-4c09-a867-d82ffdbb0df7" ], "client-request-id": [ - "0ba924f5-a95f-4d3e-bea7-e5f21a987885" + "6d1a3e60-754b-414e-af6b-21e824cd5636" ], "x-ms-gateway-rewrite": [ "false" @@ -128,7 +128,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "ZQJHljXPzR56x9O6lHDSlAKtHWhM97dMLSSCdBsR-jwnuFeHlkEh2Y_9MsE0qO6ZBapuNUex92AfqSHMRgrDJ-JfqYklP618PDXijkSl4i1A4poweVNeTjvQSZIPlRPVtUReXc2oVptEuyX2Ajb39Q.maspNyTonGtHOUVPq9F_KXdKClYRG6_Yx6M1f2bnNQA" + "ukgBpude2hsohVpudEvYR_fgYJD8hTIPdsj7BY5rQSoXOjv4jDPbolAcUI0Db1n78OmkqL6CBBSqqqsPNriVuCHRVgl0Xrk4bjfeOIu5ocN98mcBol865yFgFkZBc5ONCRSbM9rom6kkPfAjMndTZA.F-LJzf0tNrwOdrh2jhJaoT6kfS3wPhwIErbBn8r34oM" ], "X-Content-Type-Options": [ "nosniff" @@ -146,7 +146,7 @@ "no-cache" ], "Location": [ - "https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/directoryObjects/67da70b4-daaa-4959-990f-9d4d8797dc77/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal" + "https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/directoryObjects/f2e32fa3-5ca1-4235-8ab4-796b75312872/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal" ], "Server": [ "Microsoft-IIS/8.5" @@ -159,25 +159,25 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:02:04 GMT" + "Wed, 13 May 2015 19:51:21 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "468" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -192,22 +192,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14999" ], "x-ms-request-id": [ - "698533e1-26bf-41c2-8488-5151d862121d" + "272a21ee-9ee9-4110-ad70-c7075e73987f" ], "x-ms-correlation-request-id": [ - "698533e1-26bf-41c2-8488-5151d862121d" + "272a21ee-9ee9-4110-ad70-c7075e73987f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040211Z:698533e1-26bf-41c2-8488-5151d862121d" + "CENTRALUS:20150513T195122Z:272a21ee-9ee9-4110-ad70-c7075e73987f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:02:11 GMT" + "Wed, 13 May 2015 19:51:22 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -222,19 +222,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"67da70b4-daaa-4959-990f-9d4d8797dc77\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "595" + "596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,22 +249,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14998" ], "x-ms-request-id": [ - "3543926b-800e-4183-9119-25cf783cff49" + "f4836f5b-e612-49ae-93e4-10e6ee6c045e" ], "x-ms-correlation-request-id": [ - "3543926b-800e-4183-9119-25cf783cff49" + "f4836f5b-e612-49ae-93e4-10e6ee6c045e" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040219Z:3543926b-800e-4183-9119-25cf783cff49" + "CENTRALUS:20150513T195125Z:f4836f5b-e612-49ae-93e4-10e6ee6c045e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:02:19 GMT" + "Wed, 13 May 2015 19:51:24 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -279,8 +279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'http:%2F%2FadApplication6121%2Fhome')&api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnaHR0cCUzQSUyRiUyRmFkQXBwbGljYXRpb242MTIxJTJGaG9tZScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'http:%2F%2FadApplication9126%2Fhome')&api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnaHR0cCUzQSUyRiUyRmFkQXBwbGljYXRpb245MTI2JTJGaG9tZScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -288,7 +288,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"67da70b4-daaa-4959-990f-9d4d8797dc77\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication6121\",\r\n \"appId\": \"8be9205c-7fef-4a79-bb40-50680db5e6dd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication6121 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication6121\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"686d0fe8-d665-401f-bd97-9042003c2aeb\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication6121 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication6121\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication6121\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication6121/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication6121/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication6121/home\",\r\n \"8be9205c-7fef-4a79-bb40-50680db5e6dd\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication9126/home\",\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1645" @@ -303,13 +303,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QBKI9AbEYiPcuPxP6tzpZblINiB8xjSfl91MBr8+PRQ=" + "PsdA7PkyAvi9ISC2/j5GADuk5Hlkgp7V82CwYNLGNR4=" ], "request-id": [ - "790ca069-bf65-4bea-a2cd-49a7afc3a4ff" + "7a05b0c2-1908-4394-964c-9376f409e32d" ], "client-request-id": [ - "1049ea16-838e-4426-9318-0183e01656d4" + "da4cacfa-6a57-4d50-8232-a5407b88054b" ], "x-ms-gateway-rewrite": [ "false" @@ -318,7 +318,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "HmWXb86B-viiZBDxXA3pOQ-JQTUMx7v-lpCr0hM5lUEEIw3zUA1s9bFett6eYFiEaJCpVLYEkrQ9CtUv17ougPgAWA2lpK2PQABCZ_ee58FhV1-DaDn8nuHZ8TKo5WDaNI_tPB0tjA-ip8fCS6Tufg.fYgxqo-yBSjpn1zvJbRC1SJTNaZvwJvAaZ4F8Cz5uoQ" + "q-jX9cXHoOQNx1XWn5GOnZ6lhbXmsh12oD8HTUG6LpfEI3OsHNafz8vj9e4gJH_mrOkRklbZOCNKxfchFrPj-GZYVmTZyJCgrlYc0Ow7VvagawL9SsxygQg33njVIUCHbsjRFwIQW-QwQtiuce-USw.q2o_Rn5c_4y_5wGrSwCtSeQTs3I-Ejs5f5TwOIwR2gw" ], "X-Content-Type-Options": [ "nosniff" @@ -346,14 +346,14 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:02:11 GMT" + "Wed, 13 May 2015 19:51:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'http:%2F%2FadApplication6121%2Fhome')&api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnaHR0cCUzQSUyRiUyRmFkQXBwbGljYXRpb242MTIxJTJGaG9tZScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'http:%2F%2FadApplication9126%2Fhome')&api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnaHR0cCUzQSUyRiUyRmFkQXBwbGljYXRpb245MTI2JTJGaG9tZScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -361,7 +361,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"67da70b4-daaa-4959-990f-9d4d8797dc77\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication6121\",\r\n \"appId\": \"8be9205c-7fef-4a79-bb40-50680db5e6dd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication6121 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication6121\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"686d0fe8-d665-401f-bd97-9042003c2aeb\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication6121 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication6121\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication6121\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication6121/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication6121/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication6121/home\",\r\n \"8be9205c-7fef-4a79-bb40-50680db5e6dd\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication9126/home\",\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1645" @@ -376,13 +376,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "L1T5XHZYGeFZQeobDtqw4Vyk5Majkvn9aCYas2qZMLw=" + "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" ], "request-id": [ - "bd99cdb7-2380-472a-ae82-26e656784411" + "e5a20770-d041-4327-9b45-fd3171019de2" ], "client-request-id": [ - "0686fe47-6054-4520-bd34-b135944a51c3" + "81b3e49b-95ef-48c1-b569-b6c8208ecdf5" ], "x-ms-gateway-rewrite": [ "false" @@ -391,7 +391,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "l5KRJrS9XmPQs4myLyjI-NnqhrKhVXXyEOG0ty7E7fF0hkdJGBT-F_ixSAUhmydm5I3owR2-xvt-DxZr85uq47OJ6DUvmAoZUa-Vc3xumdiJSq2ocGh_BsEIQaLjMgxiG4E639fgX_GxZhCqocIdHA.KCvf9AQLJyfhMRH4eCGQ4HmDMtKmLt6q4MdMnXXkRHA" + "9EANuVBSlfl2YZUKarFzFe56RZQ3pMyjuuKGF98I0mk0dI1kVb39q_DcAqMLxEeLOHLPnsc8xgFWzDx7TMBxPpm1bwiDsK3DZR86bTJ678MFINBhPNWCKR1BCu8YyFfHuaw-lw0C8YXgNlPChHvM7w.4Gb0wUok4UJjpd-xBblCY09OD2RbOPLk2ZOiCoE4Jp8" ], "X-Content-Type-Options": [ "nosniff" @@ -419,31 +419,31 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:02:19 GMT" + "Wed, 13 May 2015 19:51:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"67da70b4-daaa-4959-990f-9d4d8797dc77\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "605" + "606" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"67da70b4-daaa-4959-990f-9d4d8797dc77\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "595" + "596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -458,22 +458,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "75612332-622b-4047-b7d5-09292b1879b4" + "895b0c97-7d8c-450f-bb4b-b8afa157297c" ], "x-ms-correlation-request-id": [ - "75612332-622b-4047-b7d5-09292b1879b4" + "895b0c97-7d8c-450f-bb4b-b8afa157297c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040216Z:75612332-622b-4047-b7d5-09292b1879b4" + "CENTRALUS:20150513T195124Z:895b0c97-7d8c-450f-bb4b-b8afa157297c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:02:15 GMT" + "Wed, 13 May 2015 19:51:23 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -488,10 +488,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -500,10 +500,10 @@ "325" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -521,22 +521,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "24d30ee1-ff60-468e-9209-d42cedfd0d7a" + "c314a35f-7e4b-4df2-bea0-af82c17302c3" ], "x-ms-correlation-request-id": [ - "24d30ee1-ff60-468e-9209-d42cedfd0d7a" + "c314a35f-7e4b-4df2-bea0-af82c17302c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T040226Z:24d30ee1-ff60-468e-9209-d42cedfd0d7a" + "CENTRALUS:20150513T195126Z:c314a35f-7e4b-4df2-bea0-af82c17302c3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 04:02:25 GMT" + "Wed, 13 May 2015 19:51:26 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/67da70b4-daaa-4959-990f-9d4d8797dc77?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy82N2RhNzBiNC1kYWFhLTQ5NTktOTkwZi05ZDRkODc5N2RjNzc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/f2e32fa3-5ca1-4235-8ab4-796b75312872?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9mMmUzMmZhMy01Y2ExLTQyMzUtOGFiNC03OTZiNzUzMTI4NzI/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -560,7 +560,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Request_ResourceNotFound\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Resource '67da70b4-daaa-4959-990f-9d4d8797dc77' does not exist or one of its queried reference-property objects are not present.\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Request_ResourceNotFound\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Resource 'f2e32fa3-5ca1-4235-8ab4-796b75312872' does not exist or one of its queried reference-property objects are not present.\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "214" @@ -569,13 +569,13 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "ocp-aad-diagnostics-server-name": [ - "L1T5XHZYGeFZQeobDtqw4Vyk5Majkvn9aCYas2qZMLw=" + "QBKI9AbEYiPcuPxP6tzpZblINiB8xjSfl91MBr8+PRQ=" ], "request-id": [ - "8c229ceb-c199-4a50-836e-97dd0a62cf59" + "a7d43a99-a6cb-4806-9bad-67b8ca3a1e6e" ], "client-request-id": [ - "f48dc465-f276-49e8-9bd5-7f1996853361" + "6fcc1e15-8e01-480d-8cbd-2b80debc3882" ], "x-ms-gateway-rewrite": [ "false" @@ -584,7 +584,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "s4KifzMksE0Ma076OaN6znlauHnCzoZwXXOLi-Z6aYVpnkNqdqTdPA-QYsSrqq7xA8Lku-kiDXJBKHdhO1j5YY8XyaVSd4xXRLJQvt6-4QE5dNvvs2oqyQn7HpJcM2L2yjOROEnYuzGhCFpUMUcQbA.HHaYESnGVs4pMP_7qQw10sVDDuy7dqLlNztV3YT61Tg" + "8Ds4yQaDUiNk2w0z3vyEznubCyfetmFLAC2IUknCLD4DkKdv3ss8UjpAHNR-D1tyUVe1hzkfOrcRIN0Vx4JTZDu4SyeZKYyxnn9WgqdCO9lXculg5lyT1PnF1C0rsz51-ZZn2YSt0Q63NDCvQNNihQ.JXz5rx--dp4ACKjahGzdtNVC8DCA0cJOFjTx3lT1jq0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,14 +606,14 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:02:17 GMT" + "Wed, 13 May 2015 19:51:24 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals/67da70b4-daaa-4959-990f-9d4d8797dc77?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscy82N2RhNzBiNC1kYWFhLTQ5NTktOTkwZi05ZDRkODc5N2RjNzc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals/f2e32fa3-5ca1-4235-8ab4-796b75312872?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscy9mMmUzMmZhMy01Y2ExLTQyMzUtOGFiNC03OTZiNzUzMTI4NzI/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,7 +621,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"67da70b4-daaa-4959-990f-9d4d8797dc77\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication6121\",\r\n \"appId\": \"8be9205c-7fef-4a79-bb40-50680db5e6dd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication6121 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication6121\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"686d0fe8-d665-401f-bd97-9042003c2aeb\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication6121 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication6121\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication6121\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication6121/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication6121/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication6121/home\",\r\n \"8be9205c-7fef-4a79-bb40-50680db5e6dd\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication9126/home\",\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1642" @@ -636,13 +636,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "R1+xCOqrBsexJPMxtV0MNJLhsxNKpRCxYbIf34S61pM=" ], "request-id": [ - "380762d4-1e7a-4d51-8626-b3ee1aaeb803" + "0cabd24e-9e62-4231-b9e8-2a8ab519a080" ], "client-request-id": [ - "8c53a90f-f966-4a2d-a9c8-5885921d3db8" + "be3d0e1e-1981-4183-9847-648aa6db9a57" ], "x-ms-gateway-rewrite": [ "false" @@ -651,7 +651,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "ww4yVlC1Dvs3QmuWRtD5YmUYE5kNjqdmn0pArNVoX1Us2lN0NkLjjyH0GAEPolOq6sVpz13if-MNX294wvgm84k8CaVIAHewpw7klMeuL442klFre2O5oRVcv9xvGdPaJfBkuAOSlx_mBI6UnduZGg.3mGrq2es_0urhi3rJ3ex99t15YK9JNlfhlNsmLcGY7E" + "kbz8A-3dxg-YX-YI7dTqOcNbgAMeZh63UHW3Ab0S5Va7YZFLb_BFrEot1EJVEVQrGcEXMf0FBJUvlmWsIWSuvr9VWvvlU4lTVg_LpeRqONZTIlLdPx0iiBwm4a8ofvP7dN1euLG23nJU8Am62MtGdg.amZhWU7bWKjvNqP8gd5ydc-RnfoD0DrU__qlCdanxNA" ], "X-Content-Type-Options": [ "nosniff" @@ -679,14 +679,14 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:02:18 GMT" + "Wed, 13 May 2015 19:51:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals/67da70b4-daaa-4959-990f-9d4d8797dc77?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscy82N2RhNzBiNC1kYWFhLTQ5NTktOTkwZi05ZDRkODc5N2RjNzc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals/f2e32fa3-5ca1-4235-8ab4-796b75312872?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscy9mMmUzMmZhMy01Y2ExLTQyMzUtOGFiNC03OTZiNzUzMTI4NzI/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,7 +694,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"67da70b4-daaa-4959-990f-9d4d8797dc77\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication6121\",\r\n \"appId\": \"8be9205c-7fef-4a79-bb40-50680db5e6dd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication6121 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication6121\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"686d0fe8-d665-401f-bd97-9042003c2aeb\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication6121 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication6121\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication6121\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication6121/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication6121/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication6121/home\",\r\n \"8be9205c-7fef-4a79-bb40-50680db5e6dd\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication9126/home\",\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1642" @@ -709,13 +709,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" ], "request-id": [ - "a6dc4e17-ccd0-43f0-8ce1-5852fdd6b333" + "2325e224-3805-400a-9a0f-571ebe4464ae" ], "client-request-id": [ - "1f7a5c13-1183-4c6c-9153-83ddb59c8897" + "55ea52e9-2d63-4905-b311-7ae6862d7544" ], "x-ms-gateway-rewrite": [ "false" @@ -724,7 +724,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "IFySHW23XtzqisqxUNzxmEt9kY7k8n6zNq7nWJ707E-3mnJUz1iKOR4Llnz-FeloNOzK_ixBcr3HQ4_naLAQBxYvtH9jJoeDgUugDndBJ7YcQ5uV7JL90W-aZoYQMq33ZgMT-916d_hDqfUKiGoVxA.PokPtpthJ3RaBGgPtwhXcL38HHmaDRUBWpdYb8SWLD0" + "mn6Kp5sP9zl3k0_KNAHVLXt0j12pccQgt54bUsI8NvdjTJeWSmjTPQ9c6lPsei-7fboHQ1qIJu0C9S1ZgV_LMo1YtaAKyqDfsdHuA9_cNJDbhWkf7JIXhQvDiIr0ZxU-0bQyNSq9zAUpfisGFxO0UQ.iA3IRt_QuZZoklaTypSS9IKeOVtYyVRFjxGopFuokA0" ], "X-Content-Type-Options": [ "nosniff" @@ -752,14 +752,14 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:02:18 GMT" + "Wed, 13 May 2015 19:51:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals/67da70b4-daaa-4959-990f-9d4d8797dc77?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscy82N2RhNzBiNC1kYWFhLTQ5NTktOTkwZi05ZDRkODc5N2RjNzc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals/f2e32fa3-5ca1-4235-8ab4-796b75312872?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscy9mMmUzMmZhMy01Y2ExLTQyMzUtOGFiNC03OTZiNzUzMTI4NzI/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,13 +776,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" ], "request-id": [ - "fc1f6f6a-7ee9-4a38-990e-8288711e757b" + "2b926e82-ff05-44dc-a0a2-04e350c344c9" ], "client-request-id": [ - "02ab3f26-4b29-4179-9ea6-7c392cb5e1b1" + "111b46fc-f7a6-4ce0-8921-81ae42585b97" ], "x-ms-gateway-rewrite": [ "false" @@ -791,7 +791,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "EUKdU0Ra-Nv-vFg-FKlFE3ydjpYSm6wKdpBapKjmaO5yPXHDBxWMI5v3ILob9CjRN3lg55hE1AYRz5INyfNfRYUtj51pKkhxlzyuqZPv-CAb6iketqy0DgWk1az7IGrOLsGnrawPEo02q3Z652eOYA.bXqrXfoWwXXUlTop5xI7d2CBhvETdf4LH005u_Qblb4" + "ynSW2GuhoVRMIZp3pM3sw3SgxwQxkw1-md4Ja7zYMDuS5rAriEWfBq9_uVWaC7b47rs4WN-wE_xVGQGBNX_HBZUJA2-djDU3t2PRc1DhdAbifRPzzABtzbuJ-hXtBycNk2a1rpmZDXLbVHtZQ40HAQ.GBJ4onkWbcd3bFdSqafVBxmbgZMNu09d_H2X_gqBCe8" ], "X-Content-Type-Options": [ "nosniff" @@ -819,14 +819,14 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:02:26 GMT" + "Wed, 13 May 2015 19:51:25 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/applications/f0ae6fd5-1175-464a-99d6-c12590a06225?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9hcHBsaWNhdGlvbnMvZjBhZTZmZDUtMTE3NS00NjRhLTk5ZDYtYzEyNTkwYTA2MjI1P2FwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/applications/37e4fda4-204a-4c9a-8e6b-5a4022851e42?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9hcHBsaWNhdGlvbnMvMzdlNGZkYTQtMjA0YS00YzlhLThlNmItNWE0MDIyODUxZTQyP2FwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -843,13 +843,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS5n1gIKpvuVz70gIQwT3GyktIuQo1lHcmSA2GJAH2A=" + "fhlmJNLYPnp764O9rf98r+032N8xEbAipKeUghbHIVU=" ], "request-id": [ - "71cd0b8c-79a7-4f86-a4b1-c0ef891628c4" + "5c4471bd-3419-4730-b12f-77e5e0196d48" ], "client-request-id": [ - "e47e5359-4ffb-45b0-94ff-a1be78a579a5" + "a228f8d3-2976-4821-ae49-5b997fe51a5d" ], "x-ms-gateway-rewrite": [ "false" @@ -858,7 +858,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "SU2GmqcOh6jLD7Nqk6qT0UpQxGdbv3mk0_hVmRMiRPc0F-aDzeK0ndi446ukBWMt9ui8dYTvfPYEZFUqvRuPI4fLnPTtWQDVVYfHMnPk9u-dXkDpRzgWfg6jGriejvO5ckWYUsOTi4qcZLLRD3uGDQ.sQruKpuGGiqZSPvbLzSOObd7p_yF6sImLPsTFyIgLdU" + "e8KJgxjFgbLUgOTL_lfu4u_VTB-bUEfWt9xgnTtht86c2ifoYmOym7XxuESvetJsQeR-UuKu_2Tm_71-PCnp177_EVKWdx9NgzzJ-bI9Lqz6nRNFDxN4bH9uO8dGxoGGc8Dz05BufWqRma71RK1WEg.NPOYNkmCL58mAZXjZKuc1i6X6biuR5UtPihs4SL7j0Y" ], "X-Content-Type-Options": [ "nosniff" @@ -886,7 +886,7 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 04:02:26 GMT" + "Wed, 13 May 2015 19:51:25 GMT" ] }, "StatusCode": 204 @@ -894,16 +894,16 @@ ], "Names": { "CreateNewAdApp": [ - "adApplication6121" + "adApplication9126" ] }, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com", - "User": "kmsngtu@microsoft.com" + "Domain": "ntdev.microsoft.com", + "User": "divyag@ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByUPN.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByUPN.json index 01b54500b91d..308274c575eb 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByUPN.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByUPN.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "468" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14983" ], "x-ms-request-id": [ - "5b51f164-aaea-4b5e-9329-dadb87cf5f68" + "64f1f697-eb06-4744-afed-fc8c5c220648" ], "x-ms-correlation-request-id": [ - "5b51f164-aaea-4b5e-9329-dadb87cf5f68" + "64f1f697-eb06-4744-afed-fc8c5c220648" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035301Z:5b51f164-aaea-4b5e-9329-dadb87cf5f68" + "WESTUS:20150513T194818Z:64f1f697-eb06-4744-afed-fc8c5c220648" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:53:00 GMT" + "Wed, 13 May 2015 19:48:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -58,19 +58,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "739" + "740" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,22 +85,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14982" ], "x-ms-request-id": [ - "20ac60cb-e078-475c-b6fd-db352cf6e0b2" + "e4c7ce86-9449-47b4-85cc-37564e0bf9dc" ], "x-ms-correlation-request-id": [ - "20ac60cb-e078-475c-b6fd-db352cf6e0b2" + "e4c7ce86-9449-47b4-85cc-37564e0bf9dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035304Z:20ac60cb-e078-475c-b6fd-db352cf6e0b2" + "WESTUS:20150513T194821Z:e4c7ce86-9449-47b4-85cc-37564e0bf9dc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:53:03 GMT" + "Wed, 13 May 2015 19:48:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -115,8 +115,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -124,10 +124,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -139,13 +139,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" ], "request-id": [ - "e551d09e-4e2b-42ed-9704-907509d95dfd" + "5d308b35-b870-4b7e-a75d-f41b2108080b" ], "client-request-id": [ - "83636a70-b3a8-4928-be03-bd77c5529b5f" + "a328a390-6e6d-40d1-a3d3-83faf755f97a" ], "x-ms-gateway-rewrite": [ "false" @@ -154,7 +154,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "RMSbc0K8ocCrI9_yzYONiGO5mgJoUwqyMCCIY0wsOEmLh-5wnYCNr0aPnuP4M654JRtXUu9vVjqctaL2lzI1ws3RBFaUtBbTwhboxFPnYEHtTgSTMv-d8tKijUukFDWp.rsW6Yer4B8pYZsRvRWPbDS8JVd0F9YdBYSE_ipgnHuo" + "kyrh_fvLhtNGef_rQ80ynyNmK6mMZvsCbRVIK_yNJlILht16hqC3Jy-n7-FOdDZZApHIohJZYAX0l9OR84c38E-kNtOsD83WVW4KD6dZ8JmmgWW4zSq6678oXk8MnOii.aXwzmutdCXStjl8-04eLypjGVTOhCGB67uXXKiDkbGE" ], "X-Content-Type-Options": [ "nosniff" @@ -182,14 +182,14 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:53:02 GMT" + "Wed, 13 May 2015 19:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/kmsngtu@microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9rbXNuZ3R1QG1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -197,10 +197,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -212,13 +212,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "lcgTVjrkmz34f6GD6dMZc9V6sDyWYM8/6SEcoDLpSbc=" + "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" ], "request-id": [ - "40a90183-b291-485b-b3ba-d3096cf4fc5f" + "124dafad-8321-406d-bf0c-812d2a307bb2" ], "client-request-id": [ - "8e4cf40a-6eb7-48a9-8a62-5df56cd336fa" + "dedcf1c7-65ec-4408-bd22-0c04f3aef73c" ], "x-ms-gateway-rewrite": [ "false" @@ -227,7 +227,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "Vdl-xpbfnCnCmtOtUemMMBRqDgkdWQRCfj_EAx46PUuSUXQZS8tFFTQUWON7Hiy3weqz2-LLDkhB-wexO5Q36teJT7koajuqx_vQaZUIQi_GfGN3gD364fkz63mAnHe9.9aao0gmg9PcRyi_opgaGjn60UwmfJr4NT59GH2wkjX0" + "3YfdXrxN34tBYEMR3MVUWSAOWYDft7vP30a2N-vGPmbGohOkq1wV1QCJlHirj1UwuZ1_H9HymgFEn9Q6Z4EK_HngQPkC3gNtcK_x75vMosFgdVE4vWBTRQ0mfkPKPmVd.QWFNXfxrhA-G7UTTGRTMaOCe_7QWLKy9bFSurbyMy_8" ], "X-Content-Type-Options": [ "nosniff" @@ -255,31 +255,31 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:53:04 GMT" + "Wed, 13 May 2015 19:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "984" + "985" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "739" + "740" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,22 +294,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-request-id": [ - "446d2e7b-9f50-4596-b480-7e24403aebf7" + "3d33969c-7241-4e7c-8bbb-74fba5dd87a4" ], "x-ms-correlation-request-id": [ - "446d2e7b-9f50-4596-b480-7e24403aebf7" + "3d33969c-7241-4e7c-8bbb-74fba5dd87a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035303Z:446d2e7b-9f50-4596-b480-7e24403aebf7" + "WESTUS:20150513T194820Z:3d33969c-7241-4e7c-8bbb-74fba5dd87a4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:53:02 GMT" + "Wed, 13 May 2015 19:48:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -324,10 +324,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzExOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjgwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -336,10 +336,10 @@ "325" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.0.0.0" + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg1197/providers/Microsoft.KeyVault/vaults/pshtestvault6809\",\r\n \"name\": \"pshtestvault6809\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6809.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -357,22 +357,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "dd5c3906-39ab-4a46-8615-407130f378c0" + "7704df0c-6251-4118-aed0-cfd17f8f1bfd" ], "x-ms-correlation-request-id": [ - "dd5c3906-39ab-4a46-8615-407130f378c0" + "7704df0c-6251-4118-aed0-cfd17f8f1bfd" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T035304Z:dd5c3906-39ab-4a46-8615-407130f378c0" + "WESTUS:20150513T194821Z:7704df0c-6251-4118-aed0-cfd17f8f1bfd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 03:53:03 GMT" + "Wed, 13 May 2015 19:48:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -387,8 +387,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -396,10 +396,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -411,13 +411,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + "7o7JCpvAMOsv7MtA28AXtuiWTyXc17omlletNDE/OUM=" ], "request-id": [ - "4a71641b-61e2-42bd-a27d-1ed26e5439ac" + "fdc362d8-197b-426c-9143-8928ab3c7537" ], "client-request-id": [ - "2e54a187-b7f4-4cc0-8fc3-7bdb7fc9f973" + "c707538a-34a1-458e-b611-a48decce3a44" ], "x-ms-gateway-rewrite": [ "false" @@ -426,7 +426,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "bMvhPAYXs6D0gi20jy9qn_t3zfWhhNUy4CI1WsTjYmmBruNaaqin0fCnXw_vi2E9l05qiJDzlLWposUAeajrjJS-WGadoSxcEPmtbPn07BigZu67eVutpLDCC2g9Vqm9.TrSbKH_cDCE90bLs1V1eza8SaKPq2EJxLi72m1LN9y4" + "Efw9MiwGtFTJe-Rddf3a7sCuUxJBGZq8n0QdIsyZgq2ZB5hc5UJYe6wzsijOn2SzvTBf235IR3EUnRNVXa_FiRFMJmTz01d_jAmdI6n5uQ1ldt_mp7GCGGtDY9fy_BEu.lh14P45U09l9NgirCHaPkuY1j8wbZHoKHWFkMT1g7JQ" ], "X-Content-Type-Options": [ "nosniff" @@ -454,14 +454,14 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:53:04 GMT" + "Wed, 13 May 2015 19:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1282be6e-d632-4620-b3b0-0273b1bfb704?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8xMjgyYmU2ZS1kNjMyLTQ2MjAtYjNiMC0wMjczYjFiZmI3MDQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -469,10 +469,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1282be6e-d632-4620-b3b0-0273b1bfb704\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-23T14:04:10Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-02-16T02:20:53Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"KmsNg service test user\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"-9\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"KmsNg service test user\",\r\n \"immutableId\": \"LKhwYuvqR0SLmi1i5bFQ8g==\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-03-14T23:16:22Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"kmsngtu@microsoft.com\",\r\n \"mailNickname\": \"kmsngtu\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE888E69E9\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdw2rzSAA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"kmsngtu@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=kmsngtu\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=7f298b16a14d45e88343688e1d329f0c\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=581bdd0b2f054248b5361f4e374811c5-KmsNg servi\",\r\n \"x500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cad0c33795264a20a831471f972b9989-KmsNg service test u\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user901\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user2f3\",\r\n \"smtp:kmsngtu@service.microsoft.com\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=KmsNg service test user150\",\r\n \"SMTP:kmsngtu@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kmsngtu@microsoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [\r\n \"kmsngtu@microsoft.com\",\r\n \"kmsngtu@service.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"kmsngtu@microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "5984" + "7215" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -484,13 +484,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" ], "request-id": [ - "75d40c3d-5772-422b-bc1d-4e43ee9e60ec" + "15294f53-34d4-4b90-8470-7347aad73cd2" ], "client-request-id": [ - "15fd6963-c713-4eaa-9827-5fea50d9f6fe" + "20ce2909-4d1f-407a-8144-0a1a262187c1" ], "x-ms-gateway-rewrite": [ "false" @@ -499,7 +499,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "eVRRJe22NAOOk-czXoto08T-IAPzCxQfp4AS3wJQgs2xkuxpMnFSKeD6Z5KVvpz4AcsZIp6S1YJsldcqli6alAdb0wXwDoeGEvLWpLdoOATamVWs9oFrNQsYNJoWd2B7.YkcNhHzPqz5C5wrYn8I_a02mGlPzTYgyjF8i8cJ-P3s" + "meWm190TB1w7cR3pkfFfU8dwaXESX7G5Q7Pb3oUApLSaotc4zRLwnupE48CiTxa87XMJv4cQfjF-vuchUpoiM3MJCIMPBDX6yE_0wLzIwWIiZUhlATEw-yv_JvQUBSdm._PqQvcnxpG8pTVnlZJvElvEWc4AeFxv4JuB9tt-hRp8" ], "X-Content-Type-Options": [ "nosniff" @@ -527,7 +527,7 @@ "ASP.NET" ], "Date": [ - "Sat, 18 Apr 2015 03:53:04 GMT" + "Wed, 13 May 2015 19:48:20 GMT" ] }, "StatusCode": 200 @@ -535,12 +535,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg1197", + "ResourceGroupName": "pshtestrg6041", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6809", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", - "User": "kmsngtu@microsoft.com", + "PreCreatedVault": "pshtestvault1018", + "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", + "User": "divyag@ntdev.microsoft.com", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "microsoft.com" + "Domain": "ntdev.microsoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs index 0ae91ef45636..7089f1e57188 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs @@ -86,7 +86,7 @@ public class NewAzureKeyVault : KeyVaultManagementCmdletBase public override void ExecuteCmdlet() { - if (VaultExists(this.VaultName, this.ResourceGroupName)) + if (VaultExistsInCurrentSubscription(this.VaultName)) { throw new ArgumentException(PSKeyVaultProperties.Resources.VaultAlreadyExists); } diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVault.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVault.cs index dfbb8ff4e496..1cbed7c85c9b 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVault.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVault.cs @@ -24,8 +24,7 @@ namespace Microsoft.Azure.Commands.KeyVault [Cmdlet(VerbsCommon.Remove, "AzureKeyVault", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High, - HelpUri = Constants.KeyVaultHelpUri)] - [OutputType(typeof(PSKeyVaultModels.PSVault))] + HelpUri = Constants.KeyVaultHelpUri)] public class RemoveAzureKeyVault : KeyVaultManagementCmdletBase { #region Input Parameter Definitions diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs index b9d22a8f2079..6214d6352113 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs @@ -21,7 +21,8 @@ namespace Microsoft.Azure.Commands.KeyVault { - [Cmdlet(VerbsCommon.Remove, "AzureKeyVaultAccessPolicy", DefaultParameterSetName = "None", HelpUri = Constants.KeyVaultHelpUri)] + [Cmdlet(VerbsCommon.Remove, "AzureKeyVaultAccessPolicy", HelpUri = Constants.KeyVaultHelpUri)] + [OutputType(typeof(PSKeyVaultModels.PSVault))] public class RemoveAzureKeyVaultAccessPolicy : KeyVaultManagementCmdletBase { #region Parameter Set Names @@ -90,8 +91,22 @@ public class RemoveAzureKeyVaultAccessPolicy : KeyVaultManagementCmdletBase /// /// [Parameter(Mandatory = false, + ParameterSetName = ByObjectId, + ValueFromPipelineByPropertyName = true, + HelpMessage = "If specified, disables the retrieval of secrets from this key vault by the Microsoft.Compute resource provider when referenced in resource creation.")] + [Parameter(Mandatory = false, + ParameterSetName = ByServicePrincipalName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "If specified, disables the retrieval of secrets from this key vault by the Microsoft.Compute resource provider when referenced in resource creation.")] + [Parameter(Mandatory = false, + ParameterSetName = ByUserPrincipalName, ValueFromPipelineByPropertyName = true, HelpMessage = "If specified, disables the retrieval of secrets from this key vault by the Microsoft.Compute resource provider when referenced in resource creation.")] + [Parameter(Mandatory = true, + ParameterSetName = "None", + ValueFromPipelineByPropertyName = true, + HelpMessage = "If specified, disables the retrieval of secrets from this key vault by the Microsoft.Compute resource provider when referenced in resource creation.")] + public SwitchParameter EnabledForDeployment { get; set; } /// @@ -103,7 +118,7 @@ public class RemoveAzureKeyVaultAccessPolicy : KeyVaultManagementCmdletBase #endregion - + public override void ExecuteCmdlet() { ResourceGroupName = string.IsNullOrWhiteSpace(ResourceGroupName) ? GetResourceGroupName(VaultName) : ResourceGroupName; diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs index af9b6914b674..f2b82abf3ddb 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.KeyVault { - [Cmdlet(VerbsCommon.Set, "AzureKeyVaultAccessPolicy", DefaultParameterSetName = ByObjectId, HelpUri = Constants.KeyVaultHelpUri)] + [Cmdlet(VerbsCommon.Set, "AzureKeyVaultAccessPolicy", HelpUri = Constants.KeyVaultHelpUri)] [OutputType(typeof(PSKeyVaultModels.PSVault))] public class SetAzureKeyVaultAccessPolicy : KeyVaultManagementCmdletBase { diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultManagementCmdletBase.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultManagementCmdletBase.cs index 744983aa5d6a..fbbb031731df 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultManagementCmdletBase.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultManagementCmdletBase.cs @@ -141,18 +141,19 @@ protected string GetResourceGroupName(string vaultName) return rg; } - protected bool VaultExists(string name, string resourceGroupName) + // See if we can list resources in current subscription and find a vault with matching name. + // If some other subscription has a vault by this name, we cannot list it here, but the Key Vault service will + // reject any attempts to create one by this name even if we tried. + // + // We are intentionally not looking up the vault name in a specific resource group here. If the vault did + // exist in that resource group, we would end up having the Key Vault service decrypt the vault for us. + // This is a heavy operation and not required here. + // + // An alternate implementation that checks for the vault name globally would be to construct a vault + // URL with the given name and attempt checking DNS entries for it. + protected bool VaultExistsInCurrentSubscription(string name) { - //Get meta data using ResourceManagementClient to avoid having KV CP decrypt the vault - var identifier = new PSResourceManagerModels.ResourceIdentifier() - { - ParentResource = null, - ResourceGroupName = resourceGroupName, - ResourceName = name, - ResourceType = this.KeyVaultManagementClient.VaultsResourceType - }.ToResourceIdentity(this.KeyVaultManagementClient.ApiVersion); - - return this.ResourcesClient.ResourceManagementClient.Resources.CheckExistence(resourceGroupName, identifier).Exists; + return GetResourceGroupName(name) != null; } protected Guid GetTenantId() diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/VaultManagementClient.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/VaultManagementClient.cs index 79f1f2c67781..d6d37f43a1ce 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/VaultManagementClient.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/VaultManagementClient.cs @@ -44,15 +44,7 @@ private IKeyVaultManagementClient KeyVaultManagementClient get; set; } - - public string ApiVersion - { - get - { - return KeyVaultManagementClient.ApiVersion; - } - } - + /// /// Create a new vault /// From b5fdea119ea0544e860958747755f64082a3f2b1 Mon Sep 17 00:00:00 2001 From: adamkr Date: Wed, 13 May 2015 15:30:12 -0700 Subject: [PATCH 20/40] Adding tests. --- .../Commands.Sql.Test.csproj | 12 + .../ScenarioTests/Common.ps1 | 5 +- .../ScenarioTests/DatabaseCrudTests.cs | 28 + .../ScenarioTests/DatabaseCrudTests.ps1 | 128 +- .../TestDatabaseCreateV2.json | 1191 +++++++++++++ .../TestDatabaseGetV2.json | 1353 +++++++++++++++ .../TestDatabaseRemoveV2.json | 1509 +++++++++++++++++ .../TestDatabaseUpdateV2.json | 1364 +++++++++++++++ 8 files changed, 5560 insertions(+), 30 deletions(-) create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreateV2.json create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGetV2.json create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemoveV2.json create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index a256b53ec36d..d5e34f80c6fc 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -329,15 +329,27 @@ PreserveNewest + + PreserveNewest + PreserveNewest + + PreserveNewest + PreserveNewest + + PreserveNewest + PreserveNewest + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 index 181de587a502..d56f7278074a 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 @@ -144,15 +144,14 @@ function Remove-ResourceGroupForTest ($rg) .SYNOPSIS Creates the test environment needed to perform the Sql server CRUD tests #> -function Create-ServerForTest ($resourceGroup, $location = "Japan East") +function Create-ServerForTest ($resourceGroup, $serverVersion = "12.0", $location = "Japan East") { $serverName = Get-ServerName - $version = "12.0" $serverLogin = "testusername" $serverPassword = "t357ingP@s5w0rd!" $credentials = new-object System.Management.Automation.PSCredential($serverLogin, ($serverPassword | ConvertTo-SecureString -asPlainText -Force)) - $server = New-AzureSqlServer -ResourceGroupName $resourceGroup.ResourceGroupName -ServerName $serverName -Location $location -ServerVersion $version -SqlAdminCredentials $credentials + $server = New-AzureSqlServer -ResourceGroupName $resourceGroup.ResourceGroupName -ServerName $serverName -Location $location -ServerVersion $serverVersion -SqlAdminCredentials $credentials return $server } diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.cs index 9fd730fc5bcc..97530df919c9 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.cs @@ -47,5 +47,33 @@ public void TestDatabaseRemove() { RunPowerShellTest("Test-RemoveDatabase"); } + + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestDatabaseCreateV2() + { + RunPowerShellTest("Test-CreateDatabaseV2"); + } + + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestDatabaseUpdateV2() + { + RunPowerShellTest("Test-UpdateDatabaseV2"); + } + + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestDatabaseGetV2() + { + RunPowerShellTest("Test-GetDatabaseV2"); + } + + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestDatabaseRemoveV2() + { + RunPowerShellTest("Test-RemoveDatabaseV2"); + } } } diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.ps1 index b1e7581de064..2984791ed005 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.ps1 @@ -17,31 +17,52 @@ Tests creating a database #> function Test-CreateDatabase +{ + Test-CreateDatabaseInternal "12.0" +} + +<# + .SYNOPSIS + Tests creating a database +#> +function Test-CreateDatabaseV2 +{ + Test-CreateDatabaseInternal "2.0" "North Central US" +} + +<# + .SYNOPSIS + Tests creating a database +#> +function Test-CreateDatabaseInternal ($serverVersion, $location = "Japan East") { # Setup $rg = Create-ResourceGroupForTest - $server = Create-ServerForTest $rg + $server = Create-ServerForTest $rg $serverVersion $location try { - # Create with default values - $databaseName = Get-DatabaseName - $db = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName - Assert-AreEqual $db.DatabaseName $databaseName - Assert-NotNull $db.MaxSizeBytes - Assert-NotNull $db.Edition - Assert-NotNull $db.CurrentServiceLevelObjectiveName - Assert-NotNull $db.CollationName - - # Create with default values via piping - $databaseName = Get-DatabaseName - $db = $server | New-AzureSqlDatabase -DatabaseName $databaseName - Assert-AreEqual $db.DatabaseName $databaseName - Assert-NotNull $db.MaxSizeBytes - Assert-NotNull $db.Edition - Assert-NotNull $db.CurrentServiceLevelObjectiveName - Assert-NotNull $db.CollationName + if ($serverVersion -ne "2.0") + { + # Create with default values + $databaseName = Get-DatabaseName + $db = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName + Assert-AreEqual $db.DatabaseName $databaseName + Assert-NotNull $db.MaxSizeBytes + Assert-NotNull $db.Edition + Assert-NotNull $db.CurrentServiceLevelObjectiveName + Assert-NotNull $db.CollationName + # Create with default values via piping + $databaseName = Get-DatabaseName + $db = $server | New-AzureSqlDatabase -DatabaseName $databaseName + Assert-AreEqual $db.DatabaseName $databaseName + Assert-NotNull $db.MaxSizeBytes + Assert-NotNull $db.Edition + Assert-NotNull $db.CurrentServiceLevelObjectiveName + Assert-NotNull $db.CollationName + } + # Create with all parameters $databaseName = Get-DatabaseName $db = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName ` @@ -68,23 +89,40 @@ function Test-CreateDatabase } } - <# .SYNOPSIS Tests updating a database #> function Test-UpdateDatabase +{ + Test-UpdateDatabaseInternal "12.0" +} + +<# + .SYNOPSIS + Tests updating a database +#> +function Test-UpdateDatabaseV2 +{ + Test-UpdateDatabaseInternal "2.0" "North Central US" +} + +<# + .SYNOPSIS + Tests updating a database +#> +function Test-UpdateDatabaseInternal ($serverVersion, $location = "Japan East") { # Setup $rg = Create-ResourceGroupForTest - $server = Create-ServerForTest $rg + $server = Create-ServerForTest $rg $serverVersion $location - # Create with default values $databaseName = Get-DatabaseName - $db = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName + $db = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName ` + -Edition Standard -MaxSizeBytes 250GB -RequestedServiceObjectiveName S0 Assert-AreEqual $db.DatabaseName $databaseName - #Default database will be Standard s0 with maxsize: 268435456000 (250GB) + # Database will be Standard s0 with maxsize: 268435456000 (250GB) try { @@ -117,14 +155,32 @@ function Test-UpdateDatabase Tests Getting a database #> function Test-GetDatabase +{ + Test-GetDatabaseInternal "12.0" +} + +<# + .SYNOPSIS + Tests Getting a database +#> +function Test-GetDatabaseV2 +{ + Test-GetDatabaseInternal "2.0" "North Central US" +} + +<# + .SYNOPSIS + Tests Getting a database +#> +function Test-GetDatabaseInternal ($serverVersion, $location = "Japan East") { # Setup $rg = Create-ResourceGroupForTest - $server = Create-ServerForTest $rg + $server = Create-ServerForTest $rg $serverVersion $location # Create with default values $databaseName = Get-DatabaseName - $db1 = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName + $db1 = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -MaxSizeBytes 1GB Assert-AreEqual $db1.DatabaseName $databaseName # Create database with non-defaults @@ -166,14 +222,32 @@ function Test-GetDatabase Tests Deleting a database #> function Test-RemoveDatabase +{ + Test-RemoveDatabaseInternal "12.0" +} + +<# + .SYNOPSIS + Tests Deleting a database +#> +function Test-RemoveDatabaseV2 +{ + Test-RemoveDatabaseInternal "2.0" "North Central US" +} + +<# + .SYNOPSIS + Tests Deleting a database +#> +function Test-RemoveDatabaseInternal ($serverVersion, $location = "Japan East") { # Setup $rg = Create-ResourceGroupForTest - $server = Create-ServerForTest $rg + $server = Create-ServerForTest $rg $serverVersion $location # Create with default values $databaseName = Get-DatabaseName - $db1 = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName + $db1 = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -MaxSizeBytes 1GB Assert-AreEqual $db1.DatabaseName $databaseName # Create database with non-defaults diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreateV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreateV2.json new file mode 100644 index 000000000000..7032465a9c66 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreateV2.json @@ -0,0 +1,1191 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9275?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazkyNzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "f7a3390f-d75b-4fe0-83b1-a42b983cf087" + ], + "x-ms-correlation-request-id": [ + "f7a3390f-d75b-4fe0-83b1-a42b983cf087" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201556Z:f7a3390f-d75b-4fe0-83b1-a42b983cf087" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:15:56 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9275?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazkyNzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "c40a64a9-7e03-4b70-8fc3-8321787fd729" + ], + "x-ms-correlation-request-id": [ + "c40a64a9-7e03-4b70-8fc3-8321787fd729" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201618Z:c40a64a9-7e03-4b70-8fc3-8321787fd729" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:18 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9275?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazkyNzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275\",\r\n \"name\": \"onesdk9275\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "5b37ee1c-92b6-47db-9699-95957bbc7cab" + ], + "x-ms-correlation-request-id": [ + "5b37ee1c-92b6-47db-9699-95957bbc7cab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201557Z:5b37ee1c-92b6-47db-9699-95957bbc7cab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:15:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazkyNzUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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": [ + "14996" + ], + "x-ms-request-id": [ + "727dce7b-e1b3-4ea0-86f7-3a9323161cde" + ], + "x-ms-correlation-request-id": [ + "727dce7b-e1b3-4ea0-86f7-3a9323161cde" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201557Z:727dce7b-e1b3-4ea0-86f7-3a9323161cde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:15:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9275/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazkyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:c45e295a-0568-4908-af32-c741c82c5313" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "0c16b48e-3815-416f-aa2e-8ea38beab801" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201557Z:0c16b48e-3815-416f-aa2e-8ea38beab801" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:15:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazkyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a1f40dc0-1c62-4132-9b95-56f7bac3bc18" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "42eaa021-d60e-45ea-b396-d55a7ac54a7b" + ], + "x-ms-correlation-request-id": [ + "42eaa021-d60e-45ea-b396-d55a7ac54a7b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201558Z:42eaa021-d60e-45ea-b396-d55a7ac54a7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:15:57 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazkyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e3200831-1d7f-4a84-82d7-62a299968e73" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702\",\r\n \"name\": \"onesdk2702\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2702.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "f593df37-7301-4690-b68a-cdfabcd0ce8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "f05c12fc-4f6b-4927-8706-ece841192acf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201605Z:f05c12fc-4f6b-4927-8706-ece841192acf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazkyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "81bd8074-c653-4518-8b4f-ad9e00e8a898" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702\",\r\n \"name\": \"onesdk2702\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2702.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "28d1f7b7-f0ea-4891-a5f4-8182ad1ad87e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "b41488c4-d15f-4e48-a48f-5d03e14ebf74" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201611Z:b41488c4-d15f-4e48-a48f-5d03e14ebf74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:11 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazkyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "60578502-1118-4cba-b360-b1b1447a1f4e" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702\",\r\n \"name\": \"onesdk2702\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2702.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "dfe0e2c8-5519-402d-ba0c-57c19a0b0d95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "01945492-f61f-43e1-bafa-a43327b4023f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201604Z:01945492-f61f-43e1-bafa-a43327b4023f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702/databases/onesdk5819?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazkyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzAyL2RhdGFiYXNlcy9vbmVzZGs1ODE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3ba1d273-ba92-4bad-88dc-c0f86848f2f9" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c572cd4c-0ccb-4b44-b7a5-06a6d3d85a40" + ], + "x-ms-correlation-request-id": [ + "c572cd4c-0ccb-4b44-b7a5-06a6d3d85a40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201605Z:c572cd4c-0ccb-4b44-b7a5-06a6d3d85a40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:04 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702/databases/onesdk5819?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazkyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzAyL2RhdGFiYXNlcy9vbmVzZGs1ODE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "237" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ff14dbeb-0bc5-4905-ba1c-3658db44c98a" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702/databases/onesdk5819\",\r\n \"name\": \"onesdk5819\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"15baac8c-9600-43ad-b8e3-1e8e4ec724d6\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T20:16:08.227Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T20:17:08.227Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "780" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "15775500-6a99-4186-afd8-44863aea071d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "c61c0cbf-276b-43af-adc2-6e0d38961899" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201611Z:c61c0cbf-276b-43af-adc2-6e0d38961899" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:11 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702/databases/onesdk5717?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazkyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzAyL2RhdGFiYXNlcy9vbmVzZGs1NzE3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "819ee22d-44b9-4be0-b93a-bb57989911fe" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7b6242a1-7eaa-4c6f-b2d9-34535d830e7f" + ], + "x-ms-correlation-request-id": [ + "7b6242a1-7eaa-4c6f-b2d9-34535d830e7f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201611Z:7b6242a1-7eaa-4c6f-b2d9-34535d830e7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:11 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702/databases/onesdk5717?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazkyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzAyL2RhdGFiYXNlcy9vbmVzZGs1NzE3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "237" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b15a6a2c-ec55-4717-95d6-e4d9b3c43cb5" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9275/providers/Microsoft.Sql/servers/onesdk2702/databases/onesdk5717\",\r\n \"name\": \"onesdk5717\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"69e7de86-0779-4baf-a008-c80e440159e1\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T20:16:15.053Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T20:17:15.053Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "780" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "bbc2eb36-b654-481c-83df-6e664dcbdb49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "46d21143-d84b-4661-814a-914ebc7acb29" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201618Z:46d21143-d84b-4661-814a-914ebc7acb29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9275?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazkyNzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "97e25acc-0b26-4321-b4f5-e20b50f9d936" + ], + "x-ms-correlation-request-id": [ + "97e25acc-0b26-4321-b4f5-e20b50f9d936" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201618Z:97e25acc-0b26-4321-b4f5-e20b50f9d936" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:18 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVNamMxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "c43bbd57-e8f8-49b4-9c31-263fb5da4ea3" + ], + "x-ms-correlation-request-id": [ + "c43bbd57-e8f8-49b4-9c31-263fb5da4ea3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201618Z:c43bbd57-e8f8-49b4-9c31-263fb5da4ea3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:18 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVNamMxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "6cbb3d8b-04a2-4590-8a88-a3f8ff496b8b" + ], + "x-ms-correlation-request-id": [ + "6cbb3d8b-04a2-4590-8a88-a3f8ff496b8b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201633Z:6cbb3d8b-04a2-4590-8a88-a3f8ff496b8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:33 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVNamMxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "0df709f6-0fed-4945-a9b5-ad3e794bcfea" + ], + "x-ms-correlation-request-id": [ + "0df709f6-0fed-4945-a9b5-ad3e794bcfea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201648Z:0df709f6-0fed-4945-a9b5-ad3e794bcfea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:16:48 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVNamMxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "7991dbb0-fda7-47f6-99cd-bbd92daf25e8" + ], + "x-ms-correlation-request-id": [ + "7991dbb0-fda7-47f6-99cd-bbd92daf25e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201703Z:7991dbb0-fda7-47f6-99cd-bbd92daf25e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:17:03 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVNamMxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "36c96f98-ca98-4476-94d6-745867367bcb" + ], + "x-ms-correlation-request-id": [ + "36c96f98-ca98-4476-94d6-745867367bcb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201718Z:36c96f98-ca98-4476-94d6-745867367bcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:17:18 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVNamMxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "9ad3b9b4-3fae-4fbd-942a-446e075ef212" + ], + "x-ms-correlation-request-id": [ + "9ad3b9b4-3fae-4fbd-942a-446e075ef212" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201733Z:9ad3b9b4-3fae-4fbd-942a-446e075ef212" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:17:33 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVNamMxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "cf10bc62-687e-4937-9571-9d1d63f9b5cf" + ], + "x-ms-correlation-request-id": [ + "cf10bc62-687e-4937-9571-9d1d63f9b5cf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201749Z:cf10bc62-687e-4937-9571-9d1d63f9b5cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:17:48 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5Mjc1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVNamMxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "1f132320-422d-4ccf-a8c1-154381b3aa9d" + ], + "x-ms-correlation-request-id": [ + "1f132320-422d-4ccf-a8c1-154381b3aa9d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T201804Z:1f132320-422d-4ccf-a8c1-154381b3aa9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 20:18:04 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateDatabaseV2": [ + "onesdk9275", + "onesdk2702", + "onesdk5819", + "onesdk5717" + ] + }, + "Variables": { + "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGetV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGetV2.json new file mode 100644 index 000000000000..aa7e3da552f4 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGetV2.json @@ -0,0 +1,1353 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "0ff8879b-d930-4797-8a6f-a570380fc719" + ], + "x-ms-correlation-request-id": [ + "0ff8879b-d930-4797-8a6f-a570380fc719" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211128Z:0ff8879b-d930-4797-8a6f-a570380fc719" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:28 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "506eece7-37d4-46fd-bade-e5f63ca2fed0" + ], + "x-ms-correlation-request-id": [ + "506eece7-37d4-46fd-bade-e5f63ca2fed0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211150Z:506eece7-37d4-46fd-bade-e5f63ca2fed0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:50 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094\",\r\n \"name\": \"onesdk1094\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "da50acc5-a50d-4a96-a501-dd1add32c762" + ], + "x-ms-correlation-request-id": [ + "da50acc5-a50d-4a96-a501-dd1add32c762" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211129Z:da50acc5-a50d-4a96-a501-dd1add32c762" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:28 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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": [ + "54baca39-0550-40d9-9966-afb0d27d9596" + ], + "x-ms-correlation-request-id": [ + "54baca39-0550-40d9-9966-afb0d27d9596" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211129Z:54baca39-0550-40d9-9966-afb0d27d9596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:612d6458-56f4-4df5-823e-724522e22fe4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "326e6382-b8a5-45ee-a536-7925f2214c39" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211129Z:326e6382-b8a5-45ee-a536-7925f2214c39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e133edb2-6c1e-4616-8c98-6c034260ef1f" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "16fe1899-46c2-4c4d-a59d-467b39237d21" + ], + "x-ms-correlation-request-id": [ + "16fe1899-46c2-4c4d-a59d-467b39237d21" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211129Z:16fe1899-46c2-4c4d-a59d-467b39237d21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:29 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1dd7a72b-ad6d-45b3-a5d8-e98f96bde9d9" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307\",\r\n \"name\": \"onesdk3307\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3307.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "03fa3889-7686-402d-b333-1d95505f7ec9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "4e2c8434-db91-4dba-9502-b61c674c4a32" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211135Z:4e2c8434-db91-4dba-9502-b61c674c4a32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1a46f79c-3ab8-46a4-9029-79de214a3727" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307\",\r\n \"name\": \"onesdk3307\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3307.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "1b1211d3-0648-42a8-a30f-70c7067524f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "5d736ac4-7c0c-4721-b0e5-8b621548f021" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211143Z:5d736ac4-7c0c-4721-b0e5-8b621548f021" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:43 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "67b6ab8f-5393-4b70-91f6-6ebaa403d247" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307\",\r\n \"name\": \"onesdk3307\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3307.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "22e08527-c89c-43b8-9501-61b1fe6d980b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "c8647c86-f997-45c9-8b32-1aee9d9c2d5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211135Z:c8647c86-f997-45c9-8b32-1aee9d9c2d5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGsyMTY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b2a6fae9-2ea4-471d-a7fb-b2729baaf459" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "49128689-ca90-40ff-9607-20e2a0770cbb" + ], + "x-ms-correlation-request-id": [ + "49128689-ca90-40ff-9607-20e2a0770cbb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211135Z:49128689-ca90-40ff-9607-20e2a0770cbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:35 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGsyMTY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7cb83833-2a77-492f-ab32-36f8e2349cb2" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169\",\r\n \"name\": \"onesdk2169\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2bf3fe4d-2416-48a8-98a0-ca122c15895c\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:39.993Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "63b1b575-c64d-4f3a-bbb6-3d12a28c344a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "1ffd4c9c-c03a-4e30-a4b4-25e4f664f213" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211149Z:1ffd4c9c-c03a-4e30-a4b4-25e4f664f213" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGsyMTY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b9f9bef7-fd80-45d2-b26e-7ff1371d17aa" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169\",\r\n \"name\": \"onesdk2169\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2bf3fe4d-2416-48a8-98a0-ca122c15895c\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:39.993Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "0faca76f-4837-49a9-a5d0-93311904e5c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "f831aec6-b000-442a-98af-f615aac85ccc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211143Z:f831aec6-b000-442a-98af-f615aac85ccc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:42 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGs2MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dddc94d9-f852-4d66-b985-de1fcd87e335" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "92ba4266-ad56-4cb8-af76-1b5f923598f0" + ], + "x-ms-correlation-request-id": [ + "92ba4266-ad56-4cb8-af76-1b5f923598f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211143Z:92ba4266-ad56-4cb8-af76-1b5f923598f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:43 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGs2MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "d6cb3f2c-07ef-4515-bbb5-36c4557b017f" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258\",\r\n \"name\": \"onesdk6258\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a7d00845-ec1c-4488-8ce4-1b466501347b\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:46.34Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:12:46.34Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "778" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "b1b2a392-1484-4cc2-865f-deff00f9a665" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "b8be65fa-b9ad-4c5b-be95-026249eaaf6f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211149Z:b8be65fa-b9ad-4c5b-be95-026249eaaf6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:49 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGs2MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "237" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dcc7c15d-f77d-494e-8d63-5dab5cc318c6" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258\",\r\n \"name\": \"onesdk6258\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a7d00845-ec1c-4488-8ce4-1b466501347b\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:46.34Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:12:46.34Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "778" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "ea8b88a5-2baa-44c8-b166-6871c2ddde8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "e543f507-ccb2-4888-ab25-5e3b8c3ed440" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211148Z:e543f507-ccb2-4888-ab25-5e3b8c3ed440" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "6554803c-bb98-4f8b-acb1-b0252b923ee6" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"a4955e76-65f0-4415-80d1-ae6d73a8a280\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-05-13T21:11:32.59Z\",\r\n \"currentServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169\",\r\n \"name\": \"onesdk2169\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2bf3fe4d-2416-48a8-98a0-ca122c15895c\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:39.993Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258\",\r\n \"name\": \"onesdk6258\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a7d00845-ec1c-4488-8ce4-1b466501347b\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:46.34Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:12:46.34Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2266" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "78aecea8-bba8-4d65-975a-e693ef9e2b6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "392f80d8-5edb-46c0-b9d1-f8902a5962fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211150Z:392f80d8-5edb-46c0-b9d1-f8902a5962fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:49 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "ebebb45c-ef54-42c4-b59a-9eedbc92910f" + ], + "x-ms-correlation-request-id": [ + "ebebb45c-ef54-42c4-b59a-9eedbc92910f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211150Z:ebebb45c-ef54-42c4-b59a-9eedbc92910f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:50 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "bcff0452-1e4b-4e49-bd7f-f5675218dfe4" + ], + "x-ms-correlation-request-id": [ + "bcff0452-1e4b-4e49-bd7f-f5675218dfe4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211150Z:bcff0452-1e4b-4e49-bd7f-f5675218dfe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:11:50 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "01adffa4-a790-46c9-a07d-5a90798fe99c" + ], + "x-ms-correlation-request-id": [ + "01adffa4-a790-46c9-a07d-5a90798fe99c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211206Z:01adffa4-a790-46c9-a07d-5a90798fe99c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:12:06 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "e18e0356-e12b-47a4-9a65-747127cf731c" + ], + "x-ms-correlation-request-id": [ + "e18e0356-e12b-47a4-9a65-747127cf731c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211221Z:e18e0356-e12b-47a4-9a65-747127cf731c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:12:21 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "e66cc873-c036-4f0b-8329-2fbe53f57423" + ], + "x-ms-correlation-request-id": [ + "e66cc873-c036-4f0b-8329-2fbe53f57423" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211236Z:e66cc873-c036-4f0b-8329-2fbe53f57423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:12:35 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "2f0cbf6c-7aa9-4d0e-8651-5d98989b83b0" + ], + "x-ms-correlation-request-id": [ + "2f0cbf6c-7aa9-4d0e-8651-5d98989b83b0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211251Z:2f0cbf6c-7aa9-4d0e-8651-5d98989b83b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:12:51 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "57392a91-10d1-4985-ad31-4abf1c3bd5d8" + ], + "x-ms-correlation-request-id": [ + "57392a91-10d1-4985-ad31-4abf1c3bd5d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211306Z:57392a91-10d1-4985-ad31-4abf1c3bd5d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:13:05 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "3778d7f5-038a-431e-8871-2e38e62d0031" + ], + "x-ms-correlation-request-id": [ + "3778d7f5-038a-431e-8871-2e38e62d0031" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211321Z:3778d7f5-038a-431e-8871-2e38e62d0031" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:13:21 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "66683eb5-591e-4978-9dd5-b6df0f9504fa" + ], + "x-ms-correlation-request-id": [ + "66683eb5-591e-4978-9dd5-b6df0f9504fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T211336Z:66683eb5-591e-4978-9dd5-b6df0f9504fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:13:36 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetDatabaseV2": [ + "onesdk1094", + "onesdk3307", + "onesdk2169", + "onesdk6258" + ] + }, + "Variables": { + "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemoveV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemoveV2.json new file mode 100644 index 000000000000..cdce52d55fea --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemoveV2.json @@ -0,0 +1,1509 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "02380e6c-02e8-4175-bd77-847b66f7e9df" + ], + "x-ms-correlation-request-id": [ + "02380e6c-02e8-4175-bd77-847b66f7e9df" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210453Z:02380e6c-02e8-4175-bd77-847b66f7e9df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:04:53 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "8ceb2813-3663-4de2-bf9b-37f1c04c6a08" + ], + "x-ms-correlation-request-id": [ + "8ceb2813-3663-4de2-bf9b-37f1c04c6a08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210521Z:8ceb2813-3663-4de2-bf9b-37f1c04c6a08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:21 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561\",\r\n \"name\": \"onesdk8561\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "b9e1f91a-0d69-4e5a-ba24-035eae9d38c7" + ], + "x-ms-correlation-request-id": [ + "b9e1f91a-0d69-4e5a-ba24-035eae9d38c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210454Z:b9e1f91a-0d69-4e5a-ba24-035eae9d38c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:04:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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": [ + "14980" + ], + "x-ms-request-id": [ + "dba716d7-ec57-4cda-aa00-80724120e41f" + ], + "x-ms-correlation-request-id": [ + "dba716d7-ec57-4cda-aa00-80724120e41f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210454Z:dba716d7-ec57-4cda-aa00-80724120e41f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:04:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:4d898118-2a54-4e46-a7ca-3c8178883868" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "968db716-78ec-436a-9735-f59cb2625d3c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210454Z:968db716-78ec-436a-9735-f59cb2625d3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:04:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a85d7dea-a691-4a66-86fc-a30c67924878" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a5f1804d-7295-47e1-a5fb-de94fecb26a2" + ], + "x-ms-correlation-request-id": [ + "a5f1804d-7295-47e1-a5fb-de94fecb26a2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210454Z:a5f1804d-7295-47e1-a5fb-de94fecb26a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:04:54 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "156341e1-0524-43d6-b5f7-356774b00414" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100\",\r\n \"name\": \"onesdk4100\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4100.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "4744f1a6-5a03-479a-87ef-e08010d5db32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "bb61cbd6-f233-4a30-8db4-122f15922950" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210501Z:bb61cbd6-f233-4a30-8db4-122f15922950" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "524b8201-551b-4a8b-bc03-93050caf8384" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100\",\r\n \"name\": \"onesdk4100\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4100.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "3e5d59a6-0a4e-47d9-9eb8-146560bcc2eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "765d3cb5-0171-4eb3-a254-3bba0a274ced" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210507Z:765d3cb5-0171-4eb3-a254-3bba0a274ced" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:07 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "71943a15-1723-4f73-b7ca-ed7921ffe33e" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100\",\r\n \"name\": \"onesdk4100\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4100.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "0df73248-064d-4cd3-9d3d-05f7f81c844a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "2df04450-7659-4b7f-87a8-2b1caf60fe12" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210500Z:2df04450-7659-4b7f-87a8-2b1caf60fe12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs1NjU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "52ee407f-a96c-4cd0-bee9-855045b14851" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b6300523-def7-494c-82cb-aa982ce9671b" + ], + "x-ms-correlation-request-id": [ + "b6300523-def7-494c-82cb-aa982ce9671b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210500Z:b6300523-def7-494c-82cb-aa982ce9671b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:00 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs1NjU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "6a976d15-3518-4fce-8679-1ead7ec8ca46" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659\",\r\n \"name\": \"onesdk5659\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fe2fe39e-e19c-4cfb-aedf-e9dc58dfc9e4\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:03.373Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "40feaa82-6ec1-46fd-a27d-d7a1a8f889c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "ad3b03d4-004e-4686-8536-dddd899b87dc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210514Z:ad3b03d4-004e-4686-8536-dddd899b87dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs1NjU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b346b259-f38d-4f10-b1a0-d7ed106dd264" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659\",\r\n \"name\": \"onesdk5659\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fe2fe39e-e19c-4cfb-aedf-e9dc58dfc9e4\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:03.373Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "70009793-b6b2-47ab-90cc-12ac18042cfc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "d6addd33-b448-48ba-ac2f-035cb95a924b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210507Z:d6addd33-b448-48ba-ac2f-035cb95a924b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:07 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs5MTEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c2cb6fd3-6d2c-45f5-b98e-cd2717738dbd" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "118ed5c8-de9d-4793-b670-736c891bae6b" + ], + "x-ms-correlation-request-id": [ + "118ed5c8-de9d-4793-b670-736c891bae6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210507Z:118ed5c8-de9d-4793-b670-736c891bae6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:07 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs5MTEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "279d1916-44c6-46d6-8084-def77b612fc0" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110\",\r\n \"name\": \"onesdk9110\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"55562461-ef3f-4df3-9099-6455e09366b6\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:11.58Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:06:11.58Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "778" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "17ad2162-ee6e-4c80-aafb-2cffe0c1e3fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "ac37a497-1229-4407-8944-bbf1878718ba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210518Z:ac37a497-1229-4407-8944-bbf1878718ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:18 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs5MTEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "237" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "268a2c26-5e3a-4b4b-8264-6c0f4814dcf5" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110\",\r\n \"name\": \"onesdk9110\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"55562461-ef3f-4df3-9099-6455e09366b6\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:11.58Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:06:11.58Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "778" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c9392aaa-aa82-4a4a-95e4-3bf61aace028" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "5ed35e62-2291-4d0f-abec-0c1abd54feff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210513Z:5ed35e62-2291-4d0f-abec-0c1abd54feff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0ca608a7-c208-4792-aca2-75cd52cd87e9" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"b197664e-66cc-4622-9c31-f947043fc409\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-05-13T21:04:57.377Z\",\r\n \"currentServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659\",\r\n \"name\": \"onesdk5659\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fe2fe39e-e19c-4cfb-aedf-e9dc58dfc9e4\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:03.373Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110\",\r\n \"name\": \"onesdk9110\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"55562461-ef3f-4df3-9099-6455e09366b6\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:11.58Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:06:11.58Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2267" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "3ef678e9-4850-4133-ac85-c066fde94f4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "bd473506-08af-4223-9cb8-05fb679958ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210514Z:bd473506-08af-4223-9cb8-05fb679958ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "fd21da25-60bf-4905-8934-43da7e4a2a15" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"b197664e-66cc-4622-9c31-f947043fc409\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-05-13T21:04:57.377Z\",\r\n \"currentServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "753" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "85399c82-2263-4c9e-ab78-0cbbaeb5c2ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "8e48afed-88d0-4a14-8042-110e5d2a3462" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210521Z:8e48afed-88d0-4a14-8042-110e5d2a3462" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:21 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs1NjU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "53dc8683-a8c1-4602-83a4-7fe3e3b7f0d9" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-request-id": [ + "b6d14b5b-2a0c-4c8f-8f94-2834221f7977" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "1.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "d2db1de7-5cc1-486d-94c8-f7e94ec897bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210517Z:d2db1de7-5cc1-486d-94c8-f7e94ec897bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:16 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs5MTEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "246aa16d-9acb-4787-99c6-0b79d4867ab6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-request-id": [ + "e3354c6d-a809-49d1-849b-23f30147f842" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "1.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "272677da-4d34-4aff-96f7-87d541940993" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210521Z:272677da-4d34-4aff-96f7-87d541940993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:21 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "a687b641-50a6-4072-a3be-a4615c3fddd3" + ], + "x-ms-correlation-request-id": [ + "a687b641-50a6-4072-a3be-a4615c3fddd3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210521Z:a687b641-50a6-4072-a3be-a4615c3fddd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:21 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "7a098f27-b46c-4ec9-9e4e-b70be307c202" + ], + "x-ms-correlation-request-id": [ + "7a098f27-b46c-4ec9-9e4e-b70be307c202" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210521Z:7a098f27-b46c-4ec9-9e4e-b70be307c202" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:21 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "affbce04-e1eb-4778-98aa-7810c5bca705" + ], + "x-ms-correlation-request-id": [ + "affbce04-e1eb-4778-98aa-7810c5bca705" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210537Z:affbce04-e1eb-4778-98aa-7810c5bca705" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:36 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "fc6770e4-c4d6-4544-9ff8-3f57633bc6da" + ], + "x-ms-correlation-request-id": [ + "fc6770e4-c4d6-4544-9ff8-3f57633bc6da" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210552Z:fc6770e4-c4d6-4544-9ff8-3f57633bc6da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:05:52 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "42011e92-246d-48a9-be3c-f9f9de30e36d" + ], + "x-ms-correlation-request-id": [ + "42011e92-246d-48a9-be3c-f9f9de30e36d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210607Z:42011e92-246d-48a9-be3c-f9f9de30e36d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:06:06 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "464a95af-bab6-466b-afc7-5bf283785aad" + ], + "x-ms-correlation-request-id": [ + "464a95af-bab6-466b-afc7-5bf283785aad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210622Z:464a95af-bab6-466b-afc7-5bf283785aad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:06:22 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "699f4525-5f3b-496e-bd86-51735991aff5" + ], + "x-ms-correlation-request-id": [ + "699f4525-5f3b-496e-bd86-51735991aff5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210637Z:699f4525-5f3b-496e-bd86-51735991aff5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:06:37 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "40fff775-3ad4-4fc7-9176-5876e320e035" + ], + "x-ms-correlation-request-id": [ + "40fff775-3ad4-4fc7-9176-5876e320e035" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210652Z:40fff775-3ad4-4fc7-9176-5876e320e035" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:06:52 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "eb175e61-4f22-488a-b164-d5ed688e9a6b" + ], + "x-ms-correlation-request-id": [ + "eb175e61-4f22-488a-b164-d5ed688e9a6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T210707Z:eb175e61-4f22-488a-b164-d5ed688e9a6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:07:07 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveDatabaseV2": [ + "onesdk8561", + "onesdk4100", + "onesdk5659", + "onesdk9110" + ] + }, + "Variables": { + "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json new file mode 100644 index 000000000000..c82d745cf7ba --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json @@ -0,0 +1,1364 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk6753?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "dc3ee68e-bf84-4bf0-b8ad-6f200e9fcbe9" + ], + "x-ms-correlation-request-id": [ + "dc3ee68e-bf84-4bf0-b8ad-6f200e9fcbe9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214200Z:dc3ee68e-bf84-4bf0-b8ad-6f200e9fcbe9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:00 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk6753?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "6e039d88-1457-4c1f-a6ce-b54e0b6f86e8" + ], + "x-ms-correlation-request-id": [ + "6e039d88-1457-4c1f-a6ce-b54e0b6f86e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214229Z:6e039d88-1457-4c1f-a6ce-b54e0b6f86e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:29 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk6753?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753\",\r\n \"name\": \"onesdk6753\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "1d40dd2b-d18f-427b-88cf-039e11a6f8f1" + ], + "x-ms-correlation-request-id": [ + "1d40dd2b-d18f-427b-88cf-039e11a6f8f1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214200Z:1d40dd2b-d18f-427b-88cf-039e11a6f8f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:00 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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": [ + "14998" + ], + "x-ms-request-id": [ + "e126fcff-78d6-4214-b408-2333123dbb38" + ], + "x-ms-correlation-request-id": [ + "e126fcff-78d6-4214-b408-2333123dbb38" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214201Z:e126fcff-78d6-4214-b408-2333123dbb38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk6753/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:b38cac68-57e2-4dfb-bc1e-8b465c393978" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "9d697ccc-2f44-4b61-a423-62ce0415d73a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214201Z:9d697ccc-2f44-4b61-a423-62ce0415d73a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "eb5d6959-923e-4fab-95f9-9560bdb6e9e1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "dad81b2d-e354-4aa8-88f6-f5c64d025d56" + ], + "x-ms-correlation-request-id": [ + "dad81b2d-e354-4aa8-88f6-f5c64d025d56" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214201Z:dad81b2d-e354-4aa8-88f6-f5c64d025d56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:01 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "05b65f2e-76a6-4e00-855a-55996bc5a84f" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300\",\r\n \"name\": \"onesdk4300\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4300.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "e68fabca-21d1-4d29-8e48-28e867559391" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "cfa3304c-b70e-4c43-8a5a-8b473f93c6d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214213Z:cfa3304c-b70e-4c43-8a5a-8b473f93c6d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0a856cdc-df97-4343-a8c5-8457ce5e0ef6" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300\",\r\n \"name\": \"onesdk4300\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4300.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "0be234ce-6307-483c-955c-dd17a764e514" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "3e4532a2-3606-4f8f-bde9-80433a9d03e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214213Z:3e4532a2-3606-4f8f-bde9-80433a9d03e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwL2RhdGFiYXNlcy9vbmVzZGs1NTI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "cb57e42b-189a-4517-82f0-499344d58d78" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a1e583c7-e0af-47ab-8843-c773eceb4779" + ], + "x-ms-correlation-request-id": [ + "a1e583c7-e0af-47ab-8843-c773eceb4779" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214213Z:a1e583c7-e0af-47ab-8843-c773eceb4779" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwL2RhdGFiYXNlcy9vbmVzZGs1NTI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2bfff91b-3d9f-4d8b-8efc-a2d4a46935d6" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "779" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "5101c4ac-4833-46b2-938c-1bdb693f868a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "17b8e24b-a08c-4757-8f05-e3d340e54333" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214218Z:17b8e24b-a08c-4757-8f05-e3d340e54333" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwL2RhdGFiYXNlcy9vbmVzZGs1NTI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b881dbaa-5830-43ea-b90e-cd4d151f7782" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "777" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c0ee2d97-1273-4244-9d3d-59f5b2dfe949" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "79ab9412-ef35-49a0-ad94-cbcc25ece771" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214223Z:79ab9412-ef35-49a0-ad94-cbcc25ece771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwL2RhdGFiYXNlcy9vbmVzZGs1NTI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a0d0a148-4275-48da-8534-de4b5b1ac287" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "777" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "f6575390-2e86-4f1e-a67a-f42e35dd1757" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "d584cbd3-f5ca-4127-8f75-b59c104996fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214223Z:d584cbd3-f5ca-4127-8f75-b59c104996fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:23 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwL2RhdGFiYXNlcy9vbmVzZGs1NTI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1770df47-6d96-4eae-9071-6b86e285f631" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"107374182400\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "779" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "d1e9df82-fba4-43a5-8441-94fde47b3766" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "6cb46b14-842d-4dc9-9992-c6985886af6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214229Z:6cb46b14-842d-4dc9-9992-c6985886af6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:29 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwL2RhdGFiYXNlcy9vbmVzZGs1NTI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"requestedServiceObjectiveName\": \"S0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "186" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2922228b-7eac-4e35-a6b8-478d33b81be8" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "779" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "de765860-381a-4ed0-9c6a-7a55a08ad750" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "24de9223-39b1-4be7-8b62-13273ba56089" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214217Z:24de9223-39b1-4be7-8b62-13273ba56089" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwL2RhdGFiYXNlcy9vbmVzZGs1NTI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "184" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "91a55128-a96e-4926-bc7d-9a6ab935320c" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "779" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "07d45379-c9c3-4681-ab56-31e6cb73c334" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6da38f9d-6fa9-413a-b5b8-998e6466935d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214222Z:6da38f9d-6fa9-413a-b5b8-998e6466935d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MzAwL2RhdGFiYXNlcy9vbmVzZGs1NTI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"107374182400\",\r\n \"requestedServiceObjectiveName\": \"S1\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "186" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "abf23855-0757-4734-9aad-6886f42f8376" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "777" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "9e791f47-b735-4f39-a0c5-137e248af2c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "32c74191-45df-4d60-b091-d402623ea541" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214229Z:32c74191-45df-4d60-b091-d402623ea541" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk6753?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "c571a3af-608c-4f81-9256-c4ef03073716" + ], + "x-ms-correlation-request-id": [ + "c571a3af-608c-4f81-9256-c4ef03073716" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214230Z:c571a3af-608c-4f81-9256-c4ef03073716" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:29 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOelV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "292e3f37-24bd-4849-a58f-a7c933bffd33" + ], + "x-ms-correlation-request-id": [ + "292e3f37-24bd-4849-a58f-a7c933bffd33" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214230Z:292e3f37-24bd-4849-a58f-a7c933bffd33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:29 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOelV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "2d3feba0-5138-4c09-b8e0-b9d543b2c906" + ], + "x-ms-correlation-request-id": [ + "2d3feba0-5138-4c09-b8e0-b9d543b2c906" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214245Z:2d3feba0-5138-4c09-b8e0-b9d543b2c906" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:42:45 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOelV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "84fb14f8-cec3-4d07-b290-08c80a387166" + ], + "x-ms-correlation-request-id": [ + "84fb14f8-cec3-4d07-b290-08c80a387166" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214300Z:84fb14f8-cec3-4d07-b290-08c80a387166" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:43:00 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOelV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "facfce16-8a62-464c-9220-389dacdb40a7" + ], + "x-ms-correlation-request-id": [ + "facfce16-8a62-464c-9220-389dacdb40a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214315Z:facfce16-8a62-464c-9220-389dacdb40a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:43:15 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOelV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "45f599cd-fe3e-46c7-9f3e-bb97d1c835bc" + ], + "x-ms-correlation-request-id": [ + "45f599cd-fe3e-46c7-9f3e-bb97d1c835bc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214330Z:45f599cd-fe3e-46c7-9f3e-bb97d1c835bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:43:30 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOelV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "52d9b528-6755-4ee8-83bf-8dc6108c225f" + ], + "x-ms-correlation-request-id": [ + "52d9b528-6755-4ee8-83bf-8dc6108c225f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214345Z:52d9b528-6755-4ee8-83bf-8dc6108c225f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:43:45 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOelV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "5c6fc324-5177-4a90-b0e6-e4c66fc5888c" + ], + "x-ms-correlation-request-id": [ + "5c6fc324-5177-4a90-b0e6-e4c66fc5888c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214400Z:5c6fc324-5177-4a90-b0e6-e4c66fc5888c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:44:00 GMT" + ], + "Location": [ + "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzUzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOelV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "964d0fa4-8eaa-4bae-90b4-bb9717659dfe" + ], + "x-ms-correlation-request-id": [ + "964d0fa4-8eaa-4bae-90b4-bb9717659dfe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150513T214415Z:964d0fa4-8eaa-4bae-90b4-bb9717659dfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 13 May 2015 21:44:15 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-UpdateDatabaseV2": [ + "onesdk6753", + "onesdk4300", + "onesdk5527" + ] + }, + "Variables": { + "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2" + } +} \ No newline at end of file From e58d1f8952b251c2c642ce36273ec619e4a7de56 Mon Sep 17 00:00:00 2001 From: emmazhu Date: Thu, 14 May 2015 18:18:26 +0800 Subject: [PATCH 21/40] Resolve PR comments. --- .../Commands.Management.Storage.Test.csproj | 1 - .../Commands.Management.Storage.Test/TestController.cs | 6 +----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj index 808f9ab03b09..ba857699d723 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Commands.Management.Storage.Test.csproj @@ -122,7 +122,6 @@ - Always diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/TestController.cs b/src/ResourceManager/Storage/Commands.Management.Storage.Test/TestController.cs index 4ba83dcca30d..00356411e14e 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage.Test/TestController.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/TestController.cs @@ -27,8 +27,6 @@ namespace Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests { public class TestController { - bool testViaCsm = true; // Currently set to true, we will get this from Environment varialbe. - private CSMTestEnvironmentFactory csmTestFactory; private EnvironmentSetupHelper helper; @@ -163,9 +161,7 @@ private GalleryClient GetGalleryClient() private StorageManagementClient GetStorageManagementClient() { - return testViaCsm - ? TestBase.GetServiceClient(this.csmTestFactory) - : TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); + return TestBase.GetServiceClient(this.csmTestFactory); } } } From cc82553939f6b6c90b91848fcae35c47dc5c42ac Mon Sep 17 00:00:00 2001 From: adamkr Date: Thu, 14 May 2015 08:03:00 -0700 Subject: [PATCH 22/40] Addressing code review comments. --- .../Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs index 6c2793306327..fe9d36e7a4b0 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs @@ -122,9 +122,11 @@ protected override IEnumerable PersistChanges(IEnumerable { response = ModelAdapter.UpsertDatabase(this.ResourceGroupName, this.ServerName, entity.First()); } - catch(ArgumentNullException ex) + catch (ArgumentNullException ex) { - if(ex.ParamName == "operationStatusLink") + // This is needed because on v11 servers the call to update database will return synchronously if the operation finishes quickly + // whereas for v12 servers it is always async. If the call retuns synchronously the operationStatusLink will be null. + if (ex.ParamName == "operationStatusLink") { response = ModelAdapter.GetDatabase(this.ResourceGroupName, this.ServerName, entity.First().DatabaseName); } From 72fb072a67085a0f894f3bc058337a125ba581e6 Mon Sep 17 00:00:00 2001 From: adamkr Date: Thu, 14 May 2015 11:24:12 -0700 Subject: [PATCH 23/40] Updating referenced nuget package version. Reverting previous change to SetAzureSqlDatabase. --- .../Commands.Sql.Test/Commands.Sql.Test.csproj | 3 ++- .../RecommendedElasticPoolTests.cs | 2 +- .../TestDatabaseUpdateV2.json | 4 ++-- .../Sql/Commands.Sql.Test/packages.config | 2 +- .../Sql/Commands.Sql/Commands.Sql.csproj | 3 ++- .../Database/Cmdlet/SetAzureSqlDatabase.cs | 17 +---------------- .../Sql/Commands.Sql/packages.config | 2 +- 7 files changed, 10 insertions(+), 23 deletions(-) diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index d5e34f80c6fc..7ddb2dcff3cb 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -65,7 +65,7 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.0.18.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll - ..\..\..\packages\Microsoft.Azure.Management.Sql.0.25.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll + ..\..\..\packages\Microsoft.Azure.Management.Sql.0.26.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll False @@ -151,6 +151,7 @@ + PreserveNewest diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/RecommendedElasticPoolTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/RecommendedElasticPoolTests.cs index 2eff9f0b8366..dbb178819adb 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/RecommendedElasticPoolTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/RecommendedElasticPoolTests.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests { public class RecommendedElasticPoolTests : SqlTestsBase { - [Fact] + [Fact(Skip="Test needs to be regenerated. Will be done by recommendations team.")] [Trait(Category.Sql, Category.CheckIn)] public void TestRecommendedElasticPoolList() { diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json index c82d745cf7ba..f2346fc6185d 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json @@ -766,7 +766,7 @@ "91a55128-a96e-4926-bc7d-9a6ab935320c" ] }, - "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": null,\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "779" @@ -829,7 +829,7 @@ "abf23855-0757-4734-9aad-6886f42f8376" ] }, - "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk6753/providers/Microsoft.Sql/servers/onesdk4300/databases/onesdk5527\",\r\n \"name\": \"onesdk5527\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3e682e65-0fdd-49cf-8091-531e243c8967\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"107374182400\",\r\n \"creationDate\": \"2015-05-13T21:42:16.333Z\",\r\n \"currentServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveId\": null,\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:43:16.333Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "777" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config index 379e90bb7bd5..376fa069bf62 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index 55ebed2992f5..3fb74dd30c4f 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -60,6 +60,7 @@ + @@ -200,7 +201,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - ..\..\..\packages\Microsoft.Azure.Management.Sql.0.25.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll + ..\..\..\packages\Microsoft.Azure.Management.Sql.0.26.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll False diff --git a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs index fe9d36e7a4b0..07cf271bf62e 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/SetAzureSqlDatabase.cs @@ -117,23 +117,8 @@ protected override IEnumerable ApplyUserInputToModel(IEnu /// The input entity protected override IEnumerable PersistChanges(IEnumerable entity) { - AzureSqlDatabaseModel response = null; - try - { - response = ModelAdapter.UpsertDatabase(this.ResourceGroupName, this.ServerName, entity.First()); - } - catch (ArgumentNullException ex) - { - // This is needed because on v11 servers the call to update database will return synchronously if the operation finishes quickly - // whereas for v12 servers it is always async. If the call retuns synchronously the operationStatusLink will be null. - if (ex.ParamName == "operationStatusLink") - { - response = ModelAdapter.GetDatabase(this.ResourceGroupName, this.ServerName, entity.First().DatabaseName); - } - } - return new List() { - response + ModelAdapter.UpsertDatabase(this.ResourceGroupName, this.ServerName, entity.First()) }; } } diff --git a/src/ResourceManager/Sql/Commands.Sql/packages.config b/src/ResourceManager/Sql/Commands.Sql/packages.config index bfd78db0deb1..f76c0b66c2b3 100644 --- a/src/ResourceManager/Sql/Commands.Sql/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql/packages.config @@ -5,7 +5,7 @@ - + From cc6bc904fb7be2a47535104ac7ee0a87d8996819 Mon Sep 17 00:00:00 2001 From: adamkr Date: Thu, 14 May 2015 15:55:11 -0700 Subject: [PATCH 24/40] Removing reference to app.config. --- src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index 3fb74dd30c4f..1ad47f943008 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -60,7 +60,6 @@ - From 50c38b0ea2945540bf50b846a100817c6c9f9764 Mon Sep 17 00:00:00 2001 From: adamkr Date: Thu, 14 May 2015 16:05:50 -0700 Subject: [PATCH 25/40] Removing another reference to app.config. --- .../Sql/Commands.Sql.Test/Commands.Sql.Test.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index 7ddb2dcff3cb..178770b171f7 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -151,7 +151,6 @@ - PreserveNewest From 121c37c54ad30b89d5749ac00e6c1f6595200d6f Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Thu, 14 May 2015 16:28:39 -0700 Subject: [PATCH 26/40] Fix Set and Move AzureResource commands. DefaultParamSet is now ResourceId. --- .../Commands.ResourceManager.Cmdlets.csproj | 1 + .../Cmdlets/Components/Constants.cs | 7 +- .../Components/LongRunningOperationHelper.cs | 6 +- .../Cmdlets/Components/ResourceIdUtility.cs | 37 +++++- .../Cmdlets/Components/TagsHelper.cs | 8 +- .../Cmdlets/Extensions/PsObjectExtensions.cs | 107 ++++++++++++++++++ .../Cmdlets/Extensions/ResourceExtensions.cs | 18 ++- .../Implementation/GetAzureResourceCmdlet.cs | 6 +- .../InvokeAzureResourceActionCmdlet.cs | 2 +- .../Implementation/MoveAzureResourceCmdlet.cs | 83 +++++++------- .../Implementation/NewAzureResourceCmdlet.cs | 2 +- .../RemoveAzureResourceCmdlet.cs | 2 +- .../ResourceManipulationCmdletBase.cs | 10 +- .../Implementation/SetAzureResourceCmdlet.cs | 100 ++++++++++------ 14 files changed, 294 insertions(+), 95 deletions(-) create mode 100644 src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj index e964fa9c5171..b9a7062e50d2 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj @@ -118,6 +118,7 @@ + diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/Constants.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/Constants.cs index 23f1681a01a3..253d39f8ad4a 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/Constants.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/Constants.cs @@ -52,7 +52,7 @@ public static class Constants /// /// The move action. /// - public static readonly string Move = "move"; + public static readonly string MoveResources = "moveResources"; /// /// The locks resource type. @@ -63,5 +63,10 @@ public static class Constants /// The deployment operations resource type. /// public static readonly string MicrosoftResourcesDeploymentOperationsType = Constants.MicrosoftResourceNamesapce + "/deployments/operations"; + + /// + /// The type name of the generic resource. + /// + public static readonly string MicrosoftAzureResource = "Microsoft.Azure.Resource"; } } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/LongRunningOperationHelper.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/LongRunningOperationHelper.cs index bf6f853a07bc..ffb1192d4f7b 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/LongRunningOperationHelper.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/LongRunningOperationHelper.cs @@ -20,7 +20,6 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components using System.Threading; using System.Threading.Tasks; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Collections; - using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.RestClients; @@ -167,6 +166,11 @@ private TrackingOperationResult HandleCreateOrUpdateResponse(OperationResult ope : operationResult.Value .ToObject>>(JsonExtensions.JsonObjectTypeSerializer); + if(resource == null && operationResult.HttpStatusCode == HttpStatusCode.Created) + { + return this.SuccessfulResult(operationResult); + } + if (resource == null) { this.FailedResult( diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ResourceIdUtility.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ResourceIdUtility.cs index c22886608a79..b5273a9e4651 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ResourceIdUtility.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ResourceIdUtility.cs @@ -165,7 +165,7 @@ public static string GetProviderNamespace(string resourceId) } /// - /// Gets the provider namespace from the resource id. + /// Gets the subscription id from the resource id. /// /// The resource id. public static string GetSubscriptionId(string resourceId) @@ -174,14 +174,45 @@ public static string GetSubscriptionId(string resourceId) } /// - /// Gets the provider namespace from the resource id. + /// Gets the name of the resource group from the resource id. /// /// The resource id. - public static string GetResourceGroup(string resourceId) + public static string GetResourceGroupName(string resourceId) { return ResourceIdUtility.GetNextSegmentAfter(resourceId: resourceId, segmentName: Constants.ResourceGroups); } + /// + /// Gets the id of the resource group from the resource id. + /// + /// The resource id. + public static string GetResourceGroupId(string resourceId) + { + var subscriptionId = ResourceIdUtility.GetSubscriptionId(resourceId); + if (string.IsNullOrWhiteSpace(subscriptionId)) + { + return null; + } + + Guid subscriptionGuid; + if (!Guid.TryParse(subscriptionId, out subscriptionGuid)) + { + return null; + } + + var resourceGroupName = ResourceIdUtility.GetResourceGroupName(resourceId); + if (string.IsNullOrWhiteSpace(resourceGroupName)) + { + return null; + } + + return ResourceIdUtility.GetResourceId( + subscriptionId: subscriptionGuid, + resourceGroupName: resourceGroupName, + resourceType: null, + resourceName: null); + } + /// /// Gets a resource type /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/TagsHelper.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/TagsHelper.cs index 966605ad09c2..f5573da7c72d 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/TagsHelper.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/TagsHelper.cs @@ -51,15 +51,11 @@ internal static InsensitiveDictionary GetTagsDictionary(IEnumerable /// The tags dictionary. - internal static Hashtable[] GetTagsHashtables(InsensitiveDictionary tags) + internal static List GetTagsHashtables(InsensitiveDictionary tags) { return tags == null ? null - : tags.SelectArray(kvp => new Hashtable - { - {"Name", kvp.Key}, - {"Value", kvp.Value}, - }); + : tags.Select(kvp => new Hashtable { { "Name", kvp.Key }, { "Value", kvp.Value } }).ToList(); } } } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs new file mode 100644 index 000000000000..2a0427d1897f --- /dev/null +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs @@ -0,0 +1,107 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions +{ + using System; + using System.Collections; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Collections; + using Newtonsoft.Json.Linq; + + /// + /// A helper class that handles common tasks that deal with the class. + /// + public static class PsObjectExtensions + { + /// + /// The properties to remove. + /// + private static readonly InsensitiveDictionary PropertiesToRemove = new InsensitiveDictionary + { + { "ResourceId", false }, + { "ResourceName", false }, + { "ResourceType", false}, + { "ExtensionResourceName", false }, + { "ExtensionResourceType", false }, + { "ResourceGroupName", false }, + { "SubscriptionId", false }, + { "Tags", false }, + { "PropertiesText", false }, + }; + + /// + /// Converts a to + /// + /// The + internal static JToken ToResourcePropertiesBody(this PSObject propertyObject) + { + return PsObjectExtensions.ToJToken(propertyObject); + } + + /// + /// Helper method for converting to + /// + /// The object. + private static JToken ToJToken(object value) + { + if (value == null) + { + return null; + } + + var valueAsPsObject = value as PSObject; + if (valueAsPsObject != null) + { + JObject obj = new JObject(); + if (valueAsPsObject.TypeNames.Any(typeName => typeName.EqualsInsensitively("System.Collections.Hashtable")) && valueAsPsObject.BaseObject is Hashtable) + { + foreach (var dictionaryEntry in ((Hashtable)valueAsPsObject.BaseObject).OfType()) + { + obj.Add(dictionaryEntry.Key.ToString(), PsObjectExtensions.ToJToken(dictionaryEntry.Value)); + } + } + else + { + var properties = (valueAsPsObject.TypeNames.Any(typeName => typeName.EqualsInsensitively(Constants.MicrosoftAzureResource))) + ? valueAsPsObject.Properties.Where(property => !PsObjectExtensions.PropertiesToRemove.ContainsKey(property.Name)) + : valueAsPsObject.Properties.AsEnumerable(); + + foreach (var member in properties) + { + obj.Add(member.Name, PsObjectExtensions.ToJToken(member.Value)); + } + } + + return obj; + } + + var valueAsArray = value as Array; + if (valueAsArray != null) + { + var retVal = new JToken[valueAsArray.Length]; + for (int i = 0; i < valueAsArray.Length; ++i) + { + retVal[i] = PsObjectExtensions.ToJToken(valueAsArray.GetValue(i)); + } + + return JArray.FromObject(retVal); + } + + return new JValue(value.ToString()); + } + } +} diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs index 3a49316cce9c..2bd783bbf1a4 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs @@ -45,21 +45,23 @@ internal static PSObject ToPsObject(this Resource resource) { "ExtensionResourceName", ResourceIdUtility.GetExtensionResourceName(resource.Id) }, { "ExtensionResourceType", extensionResourceType }, { "Kind", resource.Kind }, - { "ResourceGroupName", ResourceIdUtility.GetResourceGroup(resource.Id) }, + { "ResourceGroupName", ResourceIdUtility.GetResourceGroupName(resource.Id) }, { "Location", resource.Location }, { "SubscriptionId", ResourceIdUtility.GetSubscriptionId(resource.Id) }, { "Tags", TagsHelper.GetTagsHashtables(resource.Tags) }, { "Plan", resource.Plan.ToJToken().ToPsObject() }, { "Properties", resource.Properties.ToPsObject() }, - { "PropertiesText", resource.Properties == null ? null : resource.Properties.ToString() }, { "CreatedTime", resource.CreatedTime }, { "ChangedTime", resource.ChangedTime }, { "ETag", resource.ETag }, }; - return PowerShellUtilities.ConstructPSObject( + var psObject = PowerShellUtilities.ConstructPSObject( (resourceType + extensionResourceType).Replace('/', '.'), objectDefinition.Where(kvp => kvp.Value != null).SelectManyArray(kvp => new[] { kvp.Key, kvp.Value })); + + psObject.TypeNames.Add(Constants.MicrosoftAzureResource); + return psObject; } /// @@ -70,5 +72,15 @@ internal static Resource ToResource(this JToken jtoken) { return jtoken.ToObject>(JsonExtensions.JsonMediaTypeSerializer); } + + /// 00 + /// Converts a to a . + /// + /// The type of the properties. + /// The . + internal static Resource ToResource(this JToken jtoken) + { + return jtoken.ToObject>(JsonExtensions.JsonMediaTypeSerializer); + } } } \ No newline at end of file diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs index bbafde0e6523..4bdc0869bece 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs @@ -349,7 +349,7 @@ private async Task GetResource() private async Task> ListResourcesTypeCollection() { var resourceCollectionId = ResourceIdUtility.GetResourceId( - subscriptionId: this.SubscriptionId.CoalesceEnumerable().FirstOrDefault(), + subscriptionId: this.SubscriptionId.CoalesceEnumerable().Cast().FirstOrDefault(), resourceGroupName: this.ResourceGroupName, resourceType: this.ResourceType, resourceName: this.ResourceName, @@ -619,7 +619,7 @@ private string GetResourceId() return !string.IsNullOrWhiteSpace(this.ResourceId) ? this.ResourceId : ResourceIdUtility.GetResourceId( - subscriptionId: this.SubscriptionId.CoalesceEnumerable().FirstOrDefault(), + subscriptionId: this.SubscriptionId.CoalesceEnumerable().Cast().FirstOrDefault(), resourceGroupName: this.ResourceGroupName, resourceType: this.ResourceType, resourceName: this.ResourceName, @@ -665,7 +665,7 @@ private bool IsResourceGet() /// private bool IsResourceTypeCollectionGet() { - return this.IsCollection && + return (this.IsCollection || this.TenantLevel) && (this.IsResourceGroupLevelResourceTypeCollectionGet() || this.IsSubscriptionLevelResourceTypeCollectionGet() || this.IsTenantLevelResourceTypeCollectionGet()); diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/InvokeAzureResourceActionCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/InvokeAzureResourceActionCmdlet.cs index 68aae0dc2310..11b5a091fd5b 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/InvokeAzureResourceActionCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/InvokeAzureResourceActionCmdlet.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// /// A cmdlet that creates a new azure resource. /// - [Cmdlet(VerbsLifecycle.Invoke, "AzureResourceAction", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.SubscriptionLevelResoruceParameterSet), OutputType(typeof(PSObject))] + [Cmdlet(VerbsLifecycle.Invoke, "AzureResourceAction", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.ResourceIdParameterSet), OutputType(typeof(PSObject))] public sealed class InvokAzureResourceActionCmdlet : ResourceManipulationCmdletBase { /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs index 246a5b4b7511..604d8dacb40f 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs @@ -46,11 +46,11 @@ public class MoveAzureResourceCommand : ResourceManagerCmdletBase /// /// Gets or sets the id of the destination subscription. /// - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Id of the subscription to move the resources into.")] [ValidateNotNullOrEmpty] [Alias("Id", "SubscriptionId")] - public Guid DestinationSubscriptionId { get; set; } + public Guid? DestinationSubscriptionId { get; set; } /// /// Gets or sets a value that indicates if the user should be prompted for confirmation. @@ -58,6 +58,12 @@ public class MoveAzureResourceCommand : ResourceManagerCmdletBase [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] public SwitchParameter Force { get; set; } + /// + /// Gets or sets a value that indicates if the operation should wait for completion before returning the result. If set, the cmdlet will return as soon as the request is accepted. + /// + [Parameter(Mandatory = false, HelpMessage = "Do not wait for operation to complete.")] + public SwitchParameter NoWait { get; set; } + /// /// Gets or sets the ids of the resources to move. /// @@ -98,9 +104,22 @@ private void RunCmdlet() .Concat(this.ResourceId) .DistinctArray(StringComparer.InvariantCultureIgnoreCase); - this.DestinationSubscriptionId = this.Profile.Context.Subscription.Id; + this.DestinationSubscriptionId = this.DestinationSubscriptionId ?? this.Profile.Context.Subscription.Id; + + var sourceResourceGroups = resourceIdsToUse + .Select(resourceId => ResourceIdUtility.GetResourceGroupId(resourceId)) + .Where(resourceGroupId => !string.IsNullOrWhiteSpace(resourceGroupId)) + .DistinctArray(StringComparer.InvariantCultureIgnoreCase); + + var sourceResourceGroup = sourceResourceGroups.SingleOrDefault(); - var resourceGroup = ResourceIdUtility.GetResourceId( + if (sourceResourceGroup == null) + { + throw new InvalidOperationException( + string.Format("The resources being moved must all reside in the same resource group. The resources: {0}", resourceIdsToUse.ConcatStrings(", "))); + } + + var destinationResourceGroup = ResourceIdUtility.GetResourceId( subscriptionId: this.DestinationSubscriptionId, resourceGroupName: this.DestinationResourceGroupName, resourceName: null, @@ -110,10 +129,10 @@ private void RunCmdlet() this.Force, string.Format( "Are you sure you want to move these resources to the resource group '{0}' the resources: {1}", - resourceGroup, + destinationResourceGroup, Environment.NewLine.AsArray().Concat(resourceIdsToUse).ConcatStrings(Environment.NewLine)), "Moving the resources.", - resourceGroup, + destinationResourceGroup, () => { var apiVersion = this @@ -125,53 +144,41 @@ private void RunCmdlet() var parameters = new ResourceBatchMoveParameters { Resources = resourceIdsToUse, - TargetResourceGroup = resourceGroup, + TargetResourceGroup = destinationResourceGroup, }; var operationResult = this.GetResourcesClient() .InvokeActionOnResource( - resourceId: resourceGroup, - action: Constants.Move, + resourceId: sourceResourceGroup, + action: Constants.MoveResources, apiVersion: apiVersion, parameters: parameters.ToJToken(), cancellationToken: this.CancellationToken.Value) .Result; - var managementUri = this.GetResourcesClient() + if(!this.NoWait) + { + var managementUri = this.GetResourcesClient() .GetResourceManagementRequestUri( - resourceId: resourceGroup, + resourceId: destinationResourceGroup, apiVersion: apiVersion, - action: Constants.Move); + action: Constants.MoveResources); - var activity = string.Format("POST {0}", managementUri.PathAndQuery); + var activity = string.Format("POST {0}", managementUri.PathAndQuery); - var result = this - .GetLongRunningOperationTracker( - activityName: activity, - isResourceCreateOrUpdate: false) - .WaitOnOperation(operationResult: operationResult); + var result = this + .GetLongRunningOperationTracker( + activityName: activity, + isResourceCreateOrUpdate: false) + .WaitOnOperation(operationResult: operationResult); - this.WriteObject(result); + this.WriteObject(result); + } + else + { + this.WriteObject(operationResult); + } }); } - - /// - /// Process all resource ids in the pipeline. - /// - protected override void EndProcessing() - { - base.ProcessRecord(); - } - - /// - /// Caches the current resource id to process them in batch - /// - protected override void ProcessRecord() - { - foreach (var resourceId in this.ResourceId) - { - this.resourceIds.Add(resourceId); - } - } } } \ No newline at end of file diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs index 4c9bb0038542..664b2b376f5c 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// /// A cmdlet that creates a new azure resource. /// - [Cmdlet(VerbsCommon.New, "AzureResource", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.SubscriptionLevelResoruceParameterSet), OutputType(typeof(PSObject))] + [Cmdlet(VerbsCommon.New, "AzureResource", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.ResourceIdParameterSet), OutputType(typeof(PSObject))] public sealed class NewAzureResourceCmdlet : ResourceManipulationCmdletBase { /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceCmdlet.cs index 1336ecfac149..5fbe75833253 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceCmdlet.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// /// A cmdlet that creates a new azure resource. /// - [Cmdlet(VerbsCommon.Remove, "AzureResource", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.SubscriptionLevelResoruceParameterSet), OutputType(typeof(PSObject))] + [Cmdlet(VerbsCommon.Remove, "AzureResource", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.ResourceIdParameterSet), OutputType(typeof(PSObject))] public class RemoveAzureResourceCmdlet : ResourceManipulationCmdletBase { /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManipulationCmdletBase.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManipulationCmdletBase.cs index bf4db2cda9f4..302d4f26dc27 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManipulationCmdletBase.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManipulationCmdletBase.cs @@ -36,13 +36,13 @@ public abstract class ResourceManipulationCmdletBase : ResourceManagerCmdletBase /// /// The tenant level parameter set. /// - internal const string ResoruceIdParameterSet = "The resource Id."; + internal const string ResourceIdParameterSet = "The resource Id."; /// /// Gets or sets the resource Id parameter. /// [Alias("Id")] - [Parameter(ParameterSetName = ResourceManipulationCmdletBase.ResoruceIdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The fully qualified resource Id, including the subscription. e.g. /subscriptions/{subscriptionId}/providers/Microsoft.Sql/servers/myServer/databases/myDatabase")] + [Parameter(ParameterSetName = ResourceManipulationCmdletBase.ResourceIdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The fully qualified resource Id, including the subscription. e.g. /subscriptions/{subscriptionId}/providers/Microsoft.Sql/servers/myServer/databases/myDatabase")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } @@ -142,7 +142,7 @@ protected string GetResourceId() return !string.IsNullOrWhiteSpace(this.ResourceId) ? this.ResourceId - : !this.TenantLevel && string.IsNullOrWhiteSpace(this.ParentResource) + : !this.TenantLevel || string.IsNullOrWhiteSpace(this.ParentResource) ? this.GetResourceIdWithoutParentResource() : this.GetResourceIdWithParentResource(); @@ -173,8 +173,8 @@ private string GetResourceIdWithParentResource() return ResourceIdUtility.GetResourceId( subscriptionId: this.SubscriptionId.Value, resourceGroupName: this.ResourceGroupName, - parentResource: this.ParentResource, - resourceType: this.ResourceType, + parentResource: this.ParentResource, + resourceType: this.ResourceType, resourceName: this.ResourceName); #pragma warning restore 618 diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs index ed189a3b91b0..69d6ba18549a 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs @@ -15,8 +15,8 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { using System.Collections; - using System.Collections.Generic; using System.Management.Automation; + using System.Threading.Tasks; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; @@ -26,44 +26,39 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// /// A cmdlet that creates a new azure resource. /// - [Cmdlet(VerbsCommon.Set, "AzureResource", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.SubscriptionLevelResoruceParameterSet), OutputType(typeof(PSObject))] + [Cmdlet(VerbsCommon.Set, "AzureResource", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.ResourceIdParameterSet), OutputType(typeof(PSObject))] public sealed class SetAzureResourceCmdlet : ResourceManipulationCmdletBase { /// /// Gets or sets the kind. /// - [Parameter(Mandatory = false, HelpMessage = "The resource kind.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource kind.")] [ValidateNotNullOrEmpty] public string Kind { get; set; } /// /// Gets or sets the property object. /// - [Alias("Object")] - [Parameter(Mandatory = false, HelpMessage = "A hash table which represents resource properties.")] + [Alias("PropertiesObject")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A hash table which represents resource properties.")] [ValidateNotNullOrEmpty] - public Hashtable PropertyObject { get; set; } + public PSObject Properties { get; set; } /// /// Gets or sets the plan object. /// - [Parameter(Mandatory = false, HelpMessage = "A hash table which represents resource plan properties.")] + [Alias("PlanObject")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A hash table which represents resource plan properties.")] [ValidateNotNullOrEmpty] - public Hashtable PlanObject { get; set; } + public Hashtable Plan { get; set; } /// /// Gets or sets the tags. /// [Alias("Tags")] - [Parameter(Mandatory = false, HelpMessage = "A hash table which represents resource tags.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A hash table which represents resource tags.")] public Hashtable[] Tag { get; set; } - /// - /// Gets or sets a value that indicates if the full object was passed it. - /// - [Parameter(Mandatory = false, HelpMessage = "When set indicates that the full object is passed in to the -PropertyObject parameter.")] - public SwitchParameter IsFullObject { get; set; } - /// /// Gets or sets a value that indicates if an HTTP PATCH request needs to be made instead of PUT. /// @@ -76,9 +71,7 @@ public sealed class SetAzureResourceCmdlet : ResourceManipulationCmdletBase protected override void OnProcessRecord() { base.OnProcessRecord(); - var resourceId = this.GetResourceId(); - this.ConfirmAction( this.Force, "Are you sure you want to update the following resource: " + resourceId, @@ -89,7 +82,7 @@ protected override void OnProcessRecord() var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result; var resourceBody = this.GetResourceBody(); - var operationResult = this.UsePatchSemantics + var operationResult = this.ShouldUsePatchSemantics() ? this.GetResourcesClient() .PatchResource( resourceId: resourceId, @@ -113,7 +106,7 @@ protected override void OnProcessRecord() apiVersion: apiVersion, odataQuery: this.ODataQuery); - var activity = string.Format("{0} {1}", this.UsePatchSemantics ? "PATCH" : "PUT", managementUri.PathAndQuery); + var activity = string.Format("{0} {1}", this.ShouldUsePatchSemantics() ? "PATCH" : "PUT", managementUri.PathAndQuery); var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true) .WaitOnOperation(operationResult: operationResult); @@ -122,27 +115,70 @@ protected override void OnProcessRecord() } /// - /// Gets the resource body from the parameters. + /// Gets the resource body. /// private JToken GetResourceBody() { - return this.IsFullObject - ? this.PropertyObject.ToDictionary(addValueLayer: false).ToJToken() - : this.GetResource().ToJToken(); + var getResult = this.GetResource().Result; + + JToken resourceBody; + if (getResult.CanConvertTo>()) + { + if (this.ShouldUsePatchSemantics()) + { + resourceBody = new Resource() + { + Kind = this.Kind, + Plan = this.Plan.ToDictionary(addValueLayer: false).ToJson().FromJson(), + Tags = TagsHelper.GetTagsDictionary(this.Tag), + Properties = this.Properties.ToResourcePropertiesBody(), + }.ToJToken(); + } + else + { + var resource = getResult.ToResource(); + resourceBody = new Resource() + { + Kind = this.Kind ?? resource.Kind, + Plan = this.Plan.ToDictionary(addValueLayer: false).ToJson().FromJson() ?? resource.Plan, + Tags = TagsHelper.GetTagsDictionary(this.Tag) ?? resource.Tags, + Location = resource.Location, + Properties = this.Properties == null ? resource.Properties : this.Properties.ToResourcePropertiesBody(), + }.ToJToken(); + } + } + else + { + resourceBody = this.Properties.ToJToken(); + } + return resourceBody; } /// - /// Constructs the resource assuming that only the properties were passed in. + /// Determines if the cmdlet should use PATCH semantics. /// - private Resource> GetResource() + private bool ShouldUsePatchSemantics() { - return new Resource>() - { - Kind = this.Kind, - Plan = this.PlanObject.ToDictionary(addValueLayer: false).ToJson().FromJson(), - Tags = TagsHelper.GetTagsDictionary(this.Tag), - Properties = this.PropertyObject.ToDictionary(addValueLayer: false) - }; + return this.UsePatchSemantics || (this.Tag != null && this.Plan == null && this.Properties == null && this.Kind == null); + } + + /// + /// Gets a resource. + /// + private async Task GetResource() + { + var resourceId = this.GetResourceId(); + var apiVersion = await this + .DetermineApiVersion(resourceId: resourceId) + .ConfigureAwait(continueOnCapturedContext: false); + + return await this + .GetResourcesClient() + .GetResource( + resourceId: resourceId, + apiVersion: apiVersion, + cancellationToken: this.CancellationToken.Value) + .ConfigureAwait(continueOnCapturedContext: false); } } } \ No newline at end of file From ce4c1d8966976c2af8e7f81dd65eabb5f1362c81 Mon Sep 17 00:00:00 2001 From: emmazhu Date: Fri, 15 May 2015 10:32:14 +0800 Subject: [PATCH 27/40] Add copyright to cs files. --- .../Properties/AssemblyInfo.cs | 16 +++++++++++++++- .../Models/PSStorageAccount.cs | 19 +++++++++++++++---- .../Properties/AssemblyInfo.cs | 16 +++++++++++++++- .../RemoveAzureStorageAccount.cs | 3 +-- .../StorageAccountBaseCmdlet.cs | 1 - .../StorageAccount/StorageManagementClient.cs | 2 +- 6 files changed, 47 insertions(+), 10 deletions(-) diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs index 816b47814e8f..4af4702af94a 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs @@ -1,4 +1,18 @@ -using System.Reflection; +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Models/PSStorageAccount.cs b/src/ResourceManager/Storage/Commands.Management.Storage/Models/PSStorageAccount.cs index 2418e6977f41..d0b58ad0a24b 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/Models/PSStorageAccount.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Models/PSStorageAccount.cs @@ -1,8 +1,19 @@ -using System; +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using Microsoft.Azure.Management.Storage.Models; namespace Microsoft.Azure.Commands.Management.Storage.Models diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs b/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs index 6c6d0f9bcaaf..570982708a55 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs @@ -1,4 +1,18 @@ -using System.Reflection; +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/RemoveAzureStorageAccount.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/RemoveAzureStorageAccount.cs index 3ce3b113f57b..07dbeb11f352 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/RemoveAzureStorageAccount.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/RemoveAzureStorageAccount.cs @@ -12,9 +12,8 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.Storage; -using Microsoft.Azure.Management.Storage.Models; using System.Management.Automation; +using Microsoft.Azure.Management.Storage; namespace Microsoft.Azure.Commands.Management.Storage { diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageAccountBaseCmdlet.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageAccountBaseCmdlet.cs index 43e7b058b71f..6a2f27aac6ba 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageAccountBaseCmdlet.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageAccountBaseCmdlet.cs @@ -14,7 +14,6 @@ using System; using System.Collections.Generic; -using System.Management.Automation; using Microsoft.Azure.Commands.Management.Storage.Models; using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageManagementClient.cs b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageManagementClient.cs index bc6d64f88aed..45b1307297f7 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageManagementClient.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/StorageAccount/StorageManagementClient.cs @@ -12,10 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.Azure.Management.Storage; -using System; namespace Microsoft.Azure.Commands.Management.Storage { From d0719f59bbe2bc13a0ef3b44dbfd94b1b8087aca Mon Sep 17 00:00:00 2001 From: Yuhui Zhong Date: Thu, 14 May 2015 11:59:35 -0700 Subject: [PATCH 28/40] Support compound identity access policy - Update Set-AzureKeyVaultAccessPolicy and Remove-AzureKeyVaultAccessPolicy cmdlets - Add tests - Refer to SDK containing compound identity change. --- .../Commands.KeyVault.Test.csproj | 13 +- .../ScenarioTests/KeyVaultManagementTests.cs | 93 + .../ScenarioTests/KeyVaultManagementTests.ps1 | 103 +- ...oveAccessPolicyWithCompoundIdPolicies.json | 1638 +++++++++++++++++ .../TestSetCompoundIdAccessPolicy.json | 1491 +++++++++++++++ ...TestSetRemoveAccessPolicyByCompoundId.json | 547 ++++++ .../Commands.KeyVault.Test/packages.config | 4 +- .../Commands.KeyVault.csproj | 4 +- .../RemoveAzureKeyVaultAccessPolicy.cs | 23 +- .../Commands/SetAzureKeyVaultAccessPolicy.cs | 31 +- ...soft.Azure.Commands.KeyVault.format.ps1xml | 4 + .../Models/ModelExtensions.cs | 11 +- .../Models/PSVaultAccessPolicy.cs | 9 +- .../Models/VaultManagementClient.cs | 1 + .../Properties/Resources.Designer.cs | 9 + .../Properties/Resources.resx | 3 + .../Commands.KeyVault/packages.config | 4 +- 17 files changed, 3964 insertions(+), 24 deletions(-) create mode 100644 src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveAccessPolicyWithCompoundIdPolicies.json create mode 100644 src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetCompoundIdAccessPolicy.json create mode 100644 src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByCompoundId.json diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj index 5e0896dd5ccf..fd2713b23333 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj @@ -62,7 +62,7 @@ False - ..\..\..\packages\Microsoft.Azure.KeyVault.0.9.0-preview\lib\net45\Microsoft.Azure.KeyVault.dll + ..\..\..\packages\Microsoft.Azure.KeyVault.0.9.1-preview\lib\net45\Microsoft.Azure.KeyVault.dll False @@ -76,7 +76,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.KeyVault.0.9.0-preview\lib\net40\Microsoft.Azure.Management.KeyVault.dll + ..\..\..\packages\Microsoft.Azure.Management.KeyVault.0.9.1-preview\lib\net40\Microsoft.Azure.Management.KeyVault.dll ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll @@ -223,12 +223,21 @@ PreserveNewest + + PreserveNewest + PreserveNewest PreserveNewest + + PreserveNewest + + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs index 944129b7453a..1769028f81f6 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs @@ -327,6 +327,81 @@ public void TestSetRemoveAccessPolicyByUPN() ); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSetRemoveAccessPolicyByCompoundId() + { + string upn = ""; + Guid? appId = null; + data.ResetPreCreatedVault(); + KeyVaultManagementController.NewInstance.RunPsTestWorkflow( + () => + { + return new[] { string.Format("{0} {1} {2} {3} {4}", "Test-SetRemoveAccessPolicyByCompoundId", data.preCreatedVault, data.resourceGroupName, upn, appId) }; + }, + (env) => + { + Initialize(); + upn = GetUser(env.GetTestEnvironment()); + appId = GetApplicationId(env.GetTestEnvironment(), 1); + }, + null, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName() + ); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRemoveAccessPolicyWithCompoundIdPolicies() + { + string upn = ""; + Guid? appId1 = null; + Guid? appId2 = null; + data.ResetPreCreatedVault(); + KeyVaultManagementController.NewInstance.RunPsTestWorkflow( + () => + { + return new[] { string.Format("{0} {1} {2} {3} {4} {5}", "Test-RemoveAccessPolicyWithCompoundIdPolicies", data.preCreatedVault, data.resourceGroupName, upn, appId1, appId2) }; + }, + (env) => + { + Initialize(); + upn = GetUser(env.GetTestEnvironment()); + appId1 = GetApplicationId(env.GetTestEnvironment(), 1); + appId2 = GetApplicationId(env.GetTestEnvironment(), 2); + }, + null, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName() + ); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSetCompoundIdAccessPolicy() + { + string upn = ""; + Guid? appId = null; + data.ResetPreCreatedVault(); + KeyVaultManagementController.NewInstance.RunPsTestWorkflow( + () => + { + return new[] { string.Format("{0} {1} {2} {3} {4}", "Test-SetCompoundIdAccessPolicy", data.preCreatedVault, data.resourceGroupName, upn, appId) }; + }, + (env) => + { + Initialize(); + upn = GetUser(env.GetTestEnvironment()); + appId = GetApplicationId(env.GetTestEnvironment(), 1); + }, + null, + TestUtilities.GetCallingClass(), + TestUtilities.GetCurrentMethodName() + ); + } + + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestSetRemoveAccessPolicyBySPN() @@ -488,6 +563,24 @@ private string GetUser(TestEnvironment environment) return HttpMockServer.Variables["User"]; } } + + private Guid GetApplicationId(TestEnvironment environment, int appNum) + { + if (appNum < 0) + throw new ArgumentException("Invalid appNum"); + string variableName = "AppId" + appNum; + if (HttpMockServer.Mode == HttpRecorderMode.Record) + { + Guid appId = Guid.NewGuid(); + HttpMockServer.Variables[variableName] = appId.ToString(); + return appId; + } + else + { + return new Guid(HttpMockServer.Variables[variableName]); + } + } + private Application CreateNewAdApp(KeyVaultManagementController controllerAdmin) { var appName = TestUtilities.GenerateName("adApplication"); diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.ps1 b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.ps1 index eccb4b43cd94..d673baf74535 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.ps1 +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementTests.ps1 @@ -285,6 +285,107 @@ function Test-SetRemoveAccessPolicyByObjectId Assert-AreEqual 0 $vault.AccessPolicies.Count } +function Test-SetRemoveAccessPolicyByCompoundId +{ + Param($existingVaultName, $rgName, $upn, $appId) + + Assert-NotNull $appId + + $user = Get-AzureADUser -UserPrincipalName $upn + if ($user -eq $null) + { + $user = Get-AzureADUser -Mail $upn + } + Assert-NotNull $user + $objId = $user.Id + + $PermToKeys = @("encrypt", "decrypt") + $PermToSecrets = @() + $vault = Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -ApplicationId $appId -PermissionsToKeys $PermToKeys -PassThru + + CheckVaultAccessPolicy $vault $PermToKeys $PermToSecrets + + Assert-AreEqual $objId $vault.AccessPolicies[0].ObjectId + Assert-AreEqual $appId $vault.AccessPolicies[0].ApplicationId + + $vault = Remove-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -ApplicationId $appId -PassThru + Assert-AreEqual 0 $vault.AccessPolicies.Count +} + +function Test-RemoveAccessPolicyWithCompoundIdPolicies +{ + Param($existingVaultName, $rgName, $upn, $appId1, $appId2) + + Assert-NotNull $appId1 + Assert-NotNull $appId2 + + $user = Get-AzureADUser -UserPrincipalName $upn + if ($user -eq $null) + { + $user = Get-AzureADUser -Mail $upn + } + Assert-NotNull $user + $objId = $user.Id + + # Add three access policies: ObjectId, (ObjectId, App1), (ObjectId, App2) + $PermToKeys = @("encrypt", "decrypt") + $PermToSecrets = @() + $vault = Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -PermissionsToKeys $PermToKeys -PassThru + $vault = Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -ApplicationId $appId1 -PermissionsToKeys $PermToKeys -PassThru + $vault = Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -ApplicationId $appId2 -PermissionsToKeys $PermToKeys -PassThru + Assert-AreEqual 3 $vault.AccessPolicies.Count + + # Remove one policy if specify compound id + $vault = Remove-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -ApplicationId $appId1 -PassThru + Assert-AreEqual 2 $vault.AccessPolicies.Count + + # Remove remaining two policies if specify object id + $vault = Remove-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -PassThru + Assert-AreEqual 0 $vault.AccessPolicies.Count +} + +function Test-SetCompoundIdAccessPolicy +{ + Param($existingVaultName, $rgName, $upn, $appId) + + Assert-NotNull $appId + + $user = Get-AzureADUser -UserPrincipalName $upn + if ($user -eq $null) + { + $user = Get-AzureADUser -Mail $upn + } + Assert-NotNull $user + $objId = $user.Id + + # Add one compound id policy + $PermToKeys = @("encrypt", "decrypt") + $PermToSecrets = @() + $vault = Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -ApplicationId $appId -PermissionsToKeys $PermToKeys -PassThru + + CheckVaultAccessPolicy $vault $PermToKeys $PermToSecrets + + Assert-AreEqual $objId $vault.AccessPolicies[0].ObjectId + Assert-AreEqual $appId $vault.AccessPolicies[0].ApplicationId + + # Add one object id policy + $vault = Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -PermissionsToKeys $PermToKeys -PassThru + Assert-AreEqual 2 $vault.AccessPolicies.Count + + # Change compound id policy shall not affect object id policy + $vault = Set-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -ApplicationId $appId -PermissionsToKeys @("encrypt") -PassThru + Assert-AreEqual 2 $vault.AccessPolicies.Count + $vault = Remove-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -ApplicationId $appId -PassThru + CheckVaultAccessPolicy $vault $PermToKeys $PermToSecrets + Assert-AreEqual $objId $vault.AccessPolicies[0].ObjectId + Assert-AreEqual $vault.AccessPolicies[0].ApplicationId $null + + $vault = Remove-AzureKeyVaultAccessPolicy -VaultName $existingVaultName -ResourceGroupName $rgName -ObjectId $objId -PassThru + Assert-AreEqual 0 $vault.AccessPolicies.Count +} + + + function Test-ModifyAccessPolicy { Param($existingVaultName, $rgName, $upn) @@ -416,4 +517,4 @@ function CheckVaultAccessPolicy Assert-Null $compare $compare = Compare-Object $vault.AccessPolicies[0].PermissionsToSecrets $expectedPermsToSecrets Assert-Null $compare -} \ No newline at end of file +} diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveAccessPolicyWithCompoundIdPolicies.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveAccessPolicyWithCompoundIdPolicies.json new file mode 100644 index 000000000000..5174b949859d --- /dev/null +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveAccessPolicyWithCompoundIdPolicies.json @@ -0,0 +1,1638 @@ +{ + "Entries": [ + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/yuhuiz@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy95dWh1aXpAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "97a78083-7a05-4eaf-89b7-343cc894a56f" + ], + "client-request-id": [ + "08054c6a-4f8d-48e3-a60e-bb8aaa8185d0" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "9zPrQPSz0ertCfwFWRwU9QaiuVXPSPCrPHoBrFuFiHInpkxQJf5uEgRNcso-0OwNrHNOe_PDiZjE_dN2oaGgyYSm9LpqnIRfS-PieY5AGdNuHkyVVQzhkn-B-0oTYjzF._RBaz2BYuNhLKhm3SlD8l6N-xPjxtuueNly5zuc7iyg" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "7850148b-f6c2-49c9-9fa1-ac702b1fa093" + ], + "x-ms-correlation-request-id": [ + "7850148b-f6c2-49c9-9fa1-ac702b1fa093" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011151Z:7850148b-f6c2-49c9-9fa1-ac702b1fa093" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "c3735200-ea53-489f-8b99-56182d330af1" + ], + "x-ms-correlation-request-id": [ + "c3735200-ea53-489f-8b99-56182d330af1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011154Z:c3735200-ea53-489f-8b99-56182d330af1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:53 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "796" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "6a2a6214-5ad1-4362-9551-d7e33bc8bfb3" + ], + "x-ms-correlation-request-id": [ + "6a2a6214-5ad1-4362-9551-d7e33bc8bfb3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011155Z:6a2a6214-5ad1-4362-9551-d7e33bc8bfb3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:54 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "998" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "b155935b-d050-4bbe-a8d3-90492502768f" + ], + "x-ms-correlation-request-id": [ + "b155935b-d050-4bbe-a8d3-90492502768f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011156Z:b155935b-d050-4bbe-a8d3-90492502768f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:55 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "795" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "04e6abdb-3e56-463b-8952-6c12ff7f0017" + ], + "x-ms-correlation-request-id": [ + "04e6abdb-3e56-463b-8952-6c12ff7f0017" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011157Z:04e6abdb-3e56-463b-8952-6c12ff7f0017" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + ], + "request-id": [ + "154f61f1-c707-4f7e-97c3-37dba4d82e53" + ], + "client-request-id": [ + "669917d0-e1cb-4ec2-a82f-e1c4f50e3151" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "RV67tSOX5zqv2wKV-vIYXf9eX2CntKUBaGXO5sOZ1bCetjmzEbx4QDrWeyyr2kyLppOQr_3P6CmxRkD-56_gvLnwbMTAe9AlI7gOsAxVDuiDzKJYh9EKTmNNWWXITwa1._FfaE1cR5jRv6d2urTmQmYBdUhJrIH93Vhbq1FeX_iQ" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + ], + "request-id": [ + "439653c4-8edb-41e8-bed2-6d0a6b128be0" + ], + "client-request-id": [ + "3921f6a8-ab77-4b40-9aba-e40ae378a9ca" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "ycZIXEyURHH_d0UETNfvla5Qd4V9wV2b7Rj-5E3Tp9erLmn4NzBj5Xufv2WDF8Om79IZY4Spmgu3afXsEs3jaJvjSS89g0KpB4ktUqap7XjPBSnBIz3H7NEngfX6hlwV.QNjfMVXHsgCFG-2UNz-B_mPfKI5H4CEH9xpPdkfn6ao" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + ], + "request-id": [ + "a6880e22-2db5-44a3-b863-363f5a4ab2f6" + ], + "client-request-id": [ + "0a02ffa6-f01b-4f83-9715-d8cd4d3365c4" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "ChaMbgRxU8hQxPZm1_0eX_N-q1MP_R0u7fgXaEbh10fc8K_VvSHFoN9K3bt1pbvFC2zIuTpP2g8oPpc8oZyf50OpQTyYMf4tF-ZQxHGLve5bltRmIjUdByT86e8pIemV.9hiS3crg05IxkyushnE8g6go5jmZ_74pQotVPp-aioI" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "44f018e3-7291-4730-a990-0002545bf3eb" + ], + "client-request-id": [ + "2f67080b-55bf-4011-9ad6-2c94f4f5e537" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "jW3VHnSTVW0kXP6fxEueGsPrzqMRnK_jWX3thVXUeqHRwLlfFs1l82gwu24Q8Bp2nYHzZIlNI1XIsv4VEv-y6DLNAZ8pWLIdXcBV2TYAVKOIutCIM8sFqTS0YmNFdb6j.tT4Mfd5Lsx_4K2qfPP1iQ2gCYxUygtZY81w5HyjAERg" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + ], + "request-id": [ + "2e9d5ce2-0b25-4b10-b22c-39a3c34647e5" + ], + "client-request-id": [ + "f0d15636-f67f-474d-be28-2450915d4019" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "wqeruOgg7jbQCWZyEW7nKY3xOE0wOui-3FWA-k2Oxsp0fbsJP8uehTZXItTuS-7yXQEAQk0V0MViVRZbjSPJ_as7qMa-dCNHFux8FExXjMc7miDq5iMcEsNS_Doe7Y34.pH85IAtInwyqeDWO9WMWUHTPDqDBurjh_PcOKje-ANM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + ], + "request-id": [ + "bae17672-2b1f-4070-8161-85e3cb4985c4" + ], + "client-request-id": [ + "d0a9f6d3-ebe9-4317-b1ec-7d5625a4c265" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "CGk7--a-Z1mFLM3BYBxet1jeSQdhDVNeepLTK23-Xr5urR9kYgV9yRwpi_CYJGwPXv9vJ9QgJDF8xLAqvEp13kRSbrYIDqpyQbenB1M8VMfDYVB8XdUiZuMEnDg3dXJT.KiOcicvykDbBX_8lndFFedBV_BNzrjlMx2EGvymt1Bk" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "9f04db9d-f04a-49d4-a063-5637c94066c3" + ], + "client-request-id": [ + "d6a3283a-4792-41a9-aec2-00723f30449a" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "pFB5vXzNVX84Mdp1CkFFc15Fp91XA3uLsshlTR2nk_IyJAmG91nEFjmrR44yeMGkd4IcJBG8oWfX6KwZzp0lncXJPQ36TQffLEtEBvNI0DIi0TQHFecnbfwIMDeV-gTP.KuqmHalLiZqU9_k9-HJ5eIHj2Xwpa3nQFgdjPVCCfKI" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + ], + "request-id": [ + "6cd4f708-67bc-46b6-b01f-941e3c841323" + ], + "client-request-id": [ + "ef5e1731-ae80-4486-bcb3-55ce01c223db" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "vjid83Z2nuItsr0HAseeWcGj3uR15BvNugzk9CJGShMCfaEzWxAmr1h0_Qv-X-JGn0qZWgS97vV3dWCWQHhXu0dWiWtIUn6ZzrYljEaNmSc1bgHNaEepz9O47yVaJGOE.GGGflz2h1iply7TLh1kb2s32Yr1n22d2Ap-9WFmZQHU" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + ], + "request-id": [ + "e970d4fb-4ca3-40eb-b34b-67702262339e" + ], + "client-request-id": [ + "f27a9aa5-9655-4001-9d7f-79843ffba538" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "TO4TtjliaU6KWxzKOjBkLa-4OosmOJDfqcdGrHJCKM-GY5_iQiz2Ie2s0ey0-HMyeOFN8JR-NjO_nShlkIQ06LpMu6PMQqyLQAU7Fs4_JHJvsC3HUxNxGBrFakq4i05Q.GpqixPuZ0nezTKcftb4NKYS-vL12bj0KUON4VU-Ru5Y" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + ], + "request-id": [ + "8954d4bb-5f72-4c78-96bb-beb77fa69d3c" + ], + "client-request-id": [ + "1ee0efcc-c82a-4371-9d34-2fa2ade3a25f" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "EKK9VLmQ8v86v_pT6nTG1hBrjHkLq7xNEyyiyvH6fBY4Lqj1fTqa4FtaVxju_xSZlQEm42WLAXZuY6L24fBs6GCmni9U_TEC6P9DKKV7-Zo-rJT71xC12D_Glqein07I.k9S5itMf-u0tuJpqp7IxYuR4BwbYsGQwK5YW45fkLGo" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "30cff7f3-2c90-4422-a9fc-2824cb7e4c37" + ], + "client-request-id": [ + "7f4e10fc-4c7d-4cfa-aa4f-c0205c57e60a" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "XXtxZPumeL7ZEj-3YP-KaHtUuSdvtCAfNeZWhwgA8k9Ec0G2m6UdywelmlywXL1PIcoo4BBnq3yABzjgaqv11oL2aLq6nbpJ2nAtOP0jMLMarL7pCze6E9wDOJ4k7Web.OfOKFveavCa3TMXa4sg-3vyyS6y8JuaWXWZz5tSPnlI" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + ], + "request-id": [ + "5379d627-a254-4cb6-9ded-cdb2f51e474d" + ], + "client-request-id": [ + "f3b483f8-907c-44a5-aaa9-ab99bd93c246" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "QLkCjI-7mfUfGJ8c7WeyyCvL3yCqVhcZbKpQtqwihIz2vZPOFu8hNU3LDrLik0MQeMtl-hoz_v2se9XawxiDTx9m_cpYwTKIf6RMkLmxPSY-Kl4ECFBNg8itIk6JPv_P.6_VzQOIZUGS2gDcN30us-ZWTw_8wMW7FsIevkUm27KU" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + ], + "request-id": [ + "74cf20f5-24c1-4130-a45b-1687c034075b" + ], + "client-request-id": [ + "72890d23-7aa6-4459-82ea-84ca8d5bab1e" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "-tYy6fiik1RJLV3k6Ysq6wobJLg-XWnm6c22psNI_PzM03_FFcoK9TwtUVNeMFpiwAaz6kM-5FdaGQrmT9qP970dkonCS0srJhqHxEG2JtIc4KRj42XgMiQsvNDib7MR.SeFutOMrM7xxAU5HzWGaMvKTFfXkTage2v9abB_SVrM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:11:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "590" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ba6e9db9-f47f-4321-9879-ae0e22b9718f" + ], + "x-ms-correlation-request-id": [ + "ba6e9db9-f47f-4321-9879-ae0e22b9718f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011154Z:ba6e9db9-f47f-4321-9879-ae0e22b9718f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:53 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "915" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "796" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "b4810b59-4a5c-41d1-86cf-89a10299942e" + ], + "x-ms-correlation-request-id": [ + "b4810b59-4a5c-41d1-86cf-89a10299942e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011155Z:b4810b59-4a5c-41d1-86cf-89a10299942e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:54 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1240" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "998" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "7643aec3-44a5-4f25-8f69-fca99d2bf84d" + ], + "x-ms-correlation-request-id": [ + "7643aec3-44a5-4f25-8f69-fca99d2bf84d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011156Z:7643aec3-44a5-4f25-8f69-fca99d2bf84d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:55 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "914" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "795" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "b840d90d-4cea-4ae4-80fe-2bef14ac5158" + ], + "x-ms-correlation-request-id": [ + "b840d90d-4cea-4ae4-80fe-2bef14ac5158" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011157Z:b840d90d-4cea-4ae4-80fe-2bef14ac5158" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "325" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "fc82c761-42c4-4d38-ab6a-4df20ac7e0c5" + ], + "x-ms-correlation-request-id": [ + "fc82c761-42c4-4d38-ab6a-4df20ac7e0c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T011158Z:fc82c761-42c4-4d38-ab6a-4df20ac7e0c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:11:57 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "ResourceGroupName": "pshtestrg7651", + "Location": "northcentralus", + "PreCreatedVault": "pshtestvault5045", + "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "User": "yuhuiz@ntdev.microsoft.com", + "AppId1": "e5f104f0-50b6-4ea1-9ea2-19a85cc1202f", + "AppId2": "51a8878e-abee-4f53-aad5-844c33d115ef", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "ntdev.microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetCompoundIdAccessPolicy.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetCompoundIdAccessPolicy.json new file mode 100644 index 000000000000..ad2e86d3685f --- /dev/null +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetCompoundIdAccessPolicy.json @@ -0,0 +1,1491 @@ +{ + "Entries": [ + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/yuhuiz@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy95dWh1aXpAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "90a0d4b2-b32d-4c1d-aa9c-ae0c0e0a6e5c" + ], + "client-request-id": [ + "09b4d3a6-f440-4958-94af-00c52054fd4b" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "H0KLBmhUuiGS0Rh5AcXa1Epq2nIdfrQDfVN9f0cpcFhIgV0N7TY40TAa_BglJHYS4EYsXJPOkYCLx4f0Ojf-i2MZFqhIX--_xFrCfJgx98c48oh6MSXg962qzWovR1QE.3EC3QXEQEo57xJMUZdiTNjVskTTO_Dz_jvBMjWUajEM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "cb159149-acb8-4de5-8e2d-765e0c7ee3ad" + ], + "x-ms-correlation-request-id": [ + "cb159149-acb8-4de5-8e2d-765e0c7ee3ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042242Z:cb159149-acb8-4de5-8e2d-765e0c7ee3ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "cb8ce994-b5e5-4cfb-8328-41646a1beb72" + ], + "x-ms-correlation-request-id": [ + "cb8ce994-b5e5-4cfb-8328-41646a1beb72" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042246Z:cb8ce994-b5e5-4cfb-8328-41646a1beb72" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "796" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "ba3c760e-92d2-49b9-9212-0d4d2089ba05" + ], + "x-ms-correlation-request-id": [ + "ba3c760e-92d2-49b9-9212-0d4d2089ba05" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042247Z:ba3c760e-92d2-49b9-9212-0d4d2089ba05" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "786" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "ff8bf15e-85bd-40cf-9281-e220510e516e" + ], + "x-ms-correlation-request-id": [ + "ff8bf15e-85bd-40cf-9281-e220510e516e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042248Z:ff8bf15e-85bd-40cf-9281-e220510e516e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "6f0bbeb6-83ac-4a06-bebc-d07b29064f7b" + ], + "x-ms-correlation-request-id": [ + "6f0bbeb6-83ac-4a06-bebc-d07b29064f7b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042248Z:6f0bbeb6-83ac-4a06-bebc-d07b29064f7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "081c81d0-f3b3-4b59-90b6-420b932ca05a" + ], + "client-request-id": [ + "597c2324-c71c-4dbe-b2f8-5dd297195c5f" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "YbZO4vB2mCYt0kyhR21vif91adIb9eUluSV_1n6khUMTL04KJMWNEj55e8k33ZyJun-fuGxHbIj_WL0VCD6IIw-oGmc6PCicBxKnxo_iaj_gROJ4aSsgi9ZXKtx0lgNZ.ZPmKaiOV1CPoKbaxlKVOm8Mn6N8IvTsjHHoT60qFwjY" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "b12e3d56-9b6d-4d2f-9bec-a745a19d754e" + ], + "client-request-id": [ + "e8d454c8-79f2-410f-b5d0-955ac6edcd68" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "nma1P1bU5c4nYpNbJiyjrriBwNgOeUR9Na9R2u6KHJQKi_edmu7afxeVZJjBRMp3kAqqiR6x6xr1DoaqKsgU6hSFD08HjyKTItnDa3Og352kYQnNMVZ61L4eiOuYwqwa.7pS99wbvj7rnLYq3_r4C3dEcCCmiw9Ti4rRl8RtMjNQ" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + ], + "request-id": [ + "4cfcdbc2-6f0a-47c5-a654-eb9117c1ee82" + ], + "client-request-id": [ + "fc7f4476-bb3b-4142-961b-e73acbd819e8" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "huEtj44SXVpXEB8IwA-IXfhOXt0wp0NbF6UC2SfsHmv6se8InXZJ3XJhxPiqb6hqb4S_kr7nSeodPgvORUPEX-aSw4IQ04-sK9WEFpqlx_zcR1sGcs_JzbY-fFJwaixy.K9gOE38IZiWpxi3QVdPLLHa4HRWMffHiiWtlaTEZzAc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + ], + "request-id": [ + "b3aa415c-704f-46b4-bda8-d21deb1caa26" + ], + "client-request-id": [ + "508d2589-50be-467c-91c9-1c1ee41114c9" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "dgM_3OLm2E1d1TlmyUbvWtZZxrnn401SJsuCE8lKkmx0cmCSbt3-Y9dmrHvPQG4H64_XicOE-CkWffR4-iw9EOvJu29QHLs3ERehjg8fIangRfI9sQgyjSI9_nrhE3VJ.DN92Fv93A4DPoAWrHXEKkpI66f41CwARux0Dhf8pqG4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + ], + "request-id": [ + "5369fdbc-ba79-4ff1-a2a0-fddb1563e6e3" + ], + "client-request-id": [ + "d05132fa-e4bb-4ebe-bd4b-84fa64b1b7c0" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "G0qRNdD2gC_8FP6UZSvv82G8LoumIvKibmrAVylwU2GHn5XWqRu0xxzkEMg8CnYHM3lRd-0Kwf9qFJf3_88SyEUkxhFNFvM8UVN-ogc2dNpClHWOQxe-TVvTlPx_T3ib.5G8D8qC0Kr6Aki56pN3GRjDe-HqUyBxR1cnuz855_NI" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "1822f8e7-eefc-4638-a81d-f8b1b0e5fcd3" + ], + "client-request-id": [ + "ab6abb81-dc30-4de5-951e-8859022f6609" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "2NcZMpJSfr2uhceDgLvMgTg23Vn5LRqPmIOoTSRNl3E_wCEqhHhgSN30ZqFmolHyflBhXqe_93x0E8fr5ivUpRDtbUk7se-79n05OPFyos1-ZCK5-YnZw6Pf-kt1VmVF.BQyHEgCdObtJbo8sStntO-ZKo_Y7cmWAbQE1rNDSvgg" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "ee2277d1-7900-49ce-b6e6-e231543b0368" + ], + "client-request-id": [ + "475d39f8-ab6b-4f16-97e8-6a9b58a4136b" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "KnmXl9Wy5Pq7cskGuKW7oTMxdeKirI221rAjYSwtjTnUUZw1adgHrRVwQZvpX-mpFouJFq79MM6tmmu_Qpgamkp5Z_DJFpX8-oMu_-TU_-9WCSQ2PucP6EMTDnIg5Lgp.ZugtKSygFa2LIUxAU8N6nX07uai39QjtgT2FNOB4ErQ" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "8725634a-99e3-41d6-a021-f3435dfab12d" + ], + "client-request-id": [ + "c7378389-60af-4172-9360-461f498e491c" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "-bLMoja0IeoA6vC-U9WQl_zEplNNoWrVMALaQeIiYQe_PDu7Pgbrp_TlifjRe-Pmid2wgr-8Ir7NyfF_CuVXmx5ASx5dSpvuqerVHCK1amYMvUyLXl5VzNcL0e3ECeO8.OEGzeV74x-ojnrj07NEHK7glxHRuGPdQfaCWf19QZc4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "3d8753c7-796d-4064-9f01-497dc17cdb7e" + ], + "client-request-id": [ + "b8308bb4-4777-4b70-b94a-788157351919" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "rgjxo_8sbZ6E2YDlFWa0k9P7ku_goL6kJ1NgAOIs1N3g8qIJDzu8WO3PnMxlZxyJCmVsuPJyaK1p4bbEm2_7C3Z7P3vrU-9_un7HKLNTtIac4vas0b2m9UB9t_sTkQI2.lnDaK4pBa__SM1hNRfb7jipW_3NvdxMIDw-8gZNqGfM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "9Bp1nQU/JhaSO3lV8bBy7mMK4p3NOMvZqoAcpeeOoc8=" + ], + "request-id": [ + "c0e1d9a8-678f-4760-add9-a5b54fde8f32" + ], + "client-request-id": [ + "be410968-cf66-476f-bcbc-247eda53d3b3" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "x9MfKUNPjirGdnAsqGt_UD0KTsUXGqqzbPuXpdVdWbdvuPbfnzQlvorNAIMQ8l9xJg2A4uRAxi4Nn_2srXIS1Tt2Y15uaAqN39drHA51Gp8wu3nJrzJP9z6J55j6MIye.C8zpHiEReweU9FgY84HdldGXNZXtXdxl84QzOBpbiMg" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + ], + "request-id": [ + "70001b77-3edc-4152-a3a2-fff216322009" + ], + "client-request-id": [ + "9cd9df08-decf-408c-beac-83c80d4311ae" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "3s4YwUx6y0cEUNyX-QU26NRKpd6mnYTGSjLM3qssPyY7wz_42nWQZTu1aULpmPezma2GW8WOKrVGsZK0jhlaR7S-gs9rPh_3Sfyj1TCIofOH7efCpczAfZF6Ny5yiNlI.VyaEdE2ViyN0QGgR4QlnA8vV7I9zRyx3iJvRcEv_EAA" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 04:22:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "656" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "c0453b4d-5e19-4d4c-953b-27afbfd6ee71" + ], + "x-ms-correlation-request-id": [ + "c0453b4d-5e19-4d4c-953b-27afbfd6ee71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042246Z:c0453b4d-5e19-4d4c-953b-27afbfd6ee71" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "915" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "796" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "8a43764d-cf98-43a3-9fcc-4a44b8ab47c7" + ], + "x-ms-correlation-request-id": [ + "8a43764d-cf98-43a3-9fcc-4a44b8ab47c7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042246Z:8a43764d-cf98-43a3-9fcc-4a44b8ab47c7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "891" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "786" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "fba1e69b-a93b-4170-8cfc-2dc23af1d57b" + ], + "x-ms-correlation-request-id": [ + "fba1e69b-a93b-4170-8cfc-2dc23af1d57b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042247Z:fba1e69b-a93b-4170-8cfc-2dc23af1d57b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "589" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "f55346a7-e9b0-45e5-810b-6bccaf0a05bc" + ], + "x-ms-correlation-request-id": [ + "f55346a7-e9b0-45e5-810b-6bccaf0a05bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042248Z:f55346a7-e9b0-45e5-810b-6bccaf0a05bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "325" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "6f9f720b-8032-47dc-897b-5c47a099293f" + ], + "x-ms-correlation-request-id": [ + "6f9f720b-8032-47dc-897b-5c47a099293f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T042249Z:6f9f720b-8032-47dc-897b-5c47a099293f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 04:22:49 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "ResourceGroupName": "pshtestrg4506", + "Location": "northcentralus", + "PreCreatedVault": "pshtestvault2173", + "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "User": "yuhuiz@ntdev.microsoft.com", + "AppId1": "b3917224-3c9d-4fe6-9f2c-a5231cc43e25", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "ntdev.microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByCompoundId.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByCompoundId.json new file mode 100644 index 000000000000..c55ba56941e9 --- /dev/null +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByCompoundId.json @@ -0,0 +1,547 @@ +{ + "Entries": [ + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/yuhuiz@ntdev.microsoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy95dWh1aXpAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + ], + "request-id": [ + "5a2960e2-d36f-42ed-9c26-a7601055055c" + ], + "client-request-id": [ + "5ee48aea-cd8d-4d01-bca2-315de6b2394b" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "rNpyzUbVEBDRiIrx2KLqX5fx_pyfGeg5RwvadZkvrnl-twA5J9UotjQBoY04TpoDi8T795WtxJY4qb-c2BX1NR3U5_gzkTunqwVgmaVE5jFbASedJ-gxVABu6-FSP3Ni.HzhhOsVfhpjscBgebzG6pTOxGlEV4V9mNRM4Smuc64k" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:08:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzkwMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjQwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409\",\r\n \"name\": \"pshtestvault6409\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "9dcd9c6b-8ce9-4ae3-ba2b-c528e9b987cb" + ], + "x-ms-correlation-request-id": [ + "9dcd9c6b-8ce9-4ae3-ba2b-c528e9b987cb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T010837Z:9dcd9c6b-8ce9-4ae3-ba2b-c528e9b987cb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:08:36 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzkwMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjQwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409\",\r\n \"name\": \"pshtestvault6409\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"c4111568-5480-4dcc-b818-12c6bd7da545\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "4275ad65-41f5-4286-aadf-4a1a363bda61" + ], + "x-ms-correlation-request-id": [ + "4275ad65-41f5-4286-aadf-4a1a363bda61" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T010841Z:4275ad65-41f5-4286-aadf-4a1a363bda61" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:08:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "FpbEqwjNE5UgQMRKJCh+5oT77dK8Xy2HF5eIvb2XUK4=" + ], + "request-id": [ + "05083c0a-84ad-4a7c-9a29-9290a6745317" + ], + "client-request-id": [ + "a8e68955-6403-459a-bd7d-31bdfe25e045" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "5iKXPpFqr-dXpQ1YFYSiwt40khnD5K5GKDOoaauBTibTzA4408If4hD9Y3tuMm34uJeLytoNmWYIG3tmR3SfFcZOghNs0CKgwgBJSQNCI_2Q2Rnysooy7SMY9O6pmU5Y.PdYjMHKHxtjKW0fjN9YJ_iYtxkhcJJGsdtn2c9J6FaM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:08:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "FpbEqwjNE5UgQMRKJCh+5oT77dK8Xy2HF5eIvb2XUK4=" + ], + "request-id": [ + "ce563ea9-2be9-4f4d-abd7-f21efbab8d23" + ], + "client-request-id": [ + "bce48555-0bfd-4de3-8781-a50bcc9593b2" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "Ru7I96I4KSmC_Yn5IZBtX3iTIDFkX4tnnfntBqR9wIRMacWu7dwYvfSM-5D2UQVO8WesmtgLHpHLSNDzGcZ_AI7OWUBG_HI9L9YR8wXGO6kBspm1r7ik8VNgk73z_yhS.gO5h7NHjXvh2-GpcrZA0G-z1HqNj0z1KFH5_L4V1T5s" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:08:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7120" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + ], + "request-id": [ + "60f9ea27-e322-4dcd-9f62-5fe85b2e8eee" + ], + "client-request-id": [ + "7dce2a35-1119-4dd1-b406-5098f9c0edf5" + ], + "x-ms-gateway-rewrite": [ + "false" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "TJhq6ThHzJr4TSTX0f0kSLXvEE9D4jm45dD3WQfNEB6ia0ohNbLvbmeEPHYtfE6Rb2Y0myMVGWToIg2HrVKCJZI9v9K34hklN92s9-HoniDZewcHrfbGrgbcx0ybxARs.YkVwVv2a5cvEGLftnbI4Lh4Yy1fCmhbXyTMrFvFIjjc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Fri, 15 May 2015 01:08:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzkwMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjQwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"c4111568-5480-4dcc-b818-12c6bd7da545\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "656" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409\",\r\n \"name\": \"pshtestvault6409\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"c4111568-5480-4dcc-b818-12c6bd7da545\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "42eebc19-c2f3-4878-9b4d-61a365d69cb3" + ], + "x-ms-correlation-request-id": [ + "42eebc19-c2f3-4878-9b4d-61a365d69cb3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T010840Z:42eebc19-c2f3-4878-9b4d-61a365d69cb3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:08:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzkwMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjQwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "325" + ], + "User-Agent": [ + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409\",\r\n \"name\": \"pshtestvault6409\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "b5125d49-d117-48ab-90f0-bd0373b6f3e6" + ], + "x-ms-correlation-request-id": [ + "b5125d49-d117-48ab-90f0-bd0373b6f3e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T010841Z:b5125d49-d117-48ab-90f0-bd0373b6f3e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 01:08:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "ResourceGroupName": "pshtestrg9017", + "Location": "northcentralus", + "PreCreatedVault": "pshtestvault6409", + "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", + "User": "yuhuiz@ntdev.microsoft.com", + "AppId1": "c4111568-5480-4dcc-b818-12c6bd7da545", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "ntdev.microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config index e8544ab4cf29..5f3e05df4ee5 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config @@ -5,9 +5,9 @@ - + - + diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj index 189764bcc79f..bc1484b2f8d4 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj @@ -121,7 +121,7 @@ False - ..\..\..\packages\Microsoft.Azure.KeyVault.0.9.0-preview\lib\net45\Microsoft.Azure.KeyVault.dll + ..\..\..\packages\Microsoft.Azure.KeyVault.0.9.1-preview\lib\net45\Microsoft.Azure.KeyVault.dll ..\..\..\packages\Microsoft.Azure.Graph.RBAC.1.7.0-preview\lib\net40\Microsoft.Azure.Graph.RBAC.dll @@ -132,7 +132,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.KeyVault.0.9.0-preview\lib\net40\Microsoft.Azure.Management.KeyVault.dll + ..\..\..\packages\Microsoft.Azure.Management.KeyVault.0.9.1-preview\lib\net40\Microsoft.Azure.Management.KeyVault.dll False diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs index 6214d6352113..dbef5b03f632 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs @@ -87,6 +87,15 @@ public class RemoveAzureKeyVaultAccessPolicy : KeyVaultManagementCmdletBase [ValidateNotNullOrEmpty()] public Guid ObjectId { get; set; } + /// + /// Id of the application to which a user delegate to + /// + [Parameter(Mandatory = false, + ParameterSetName = ByObjectId, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Specifies the ID of application that a user must.")] + public Guid? ApplicationId { get; set; } + /// /// /// @@ -135,13 +144,16 @@ public override void ExecuteCmdlet() throw new ArgumentException(string.Format(PSKeyVaultProperties.Resources.VaultNotFound, VaultName, ResourceGroupName)); } + if (ApplicationId.HasValue && ApplicationId.Value == Guid.Empty) + throw new ArgumentException(PSKeyVaultProperties.Resources.InvalidApplicationId); + // Update vault policies var updatedPolicies = existingVault.AccessPolicies; if (!string.IsNullOrEmpty(UserPrincipalName) || !string.IsNullOrEmpty(ServicePrincipalName) || (ObjectId != null && ObjectId != Guid.Empty)) { Guid objId = GetObjectId(this.ObjectId, this.UserPrincipalName, this.ServicePrincipalName); - - updatedPolicies = existingVault.AccessPolicies.Where(ap => ap.ObjectId != objId).ToArray(); + + updatedPolicies = existingVault.AccessPolicies.Where(ap => !ShallBeRemoved(ap, objId, this.ApplicationId)).ToArray(); } // Update the vault @@ -150,5 +162,12 @@ public override void ExecuteCmdlet() if (PassThru.IsPresent) WriteObject(updatedVault); } + private bool ShallBeRemoved(PSKeyVaultModels.PSVaultAccessPolicy ap, Guid objectId, Guid? applicationId) + { + // If both object id and application id are specified, remove the compound identity policy only. + // If only object id is specified, remove all policies refer to the object id including the compound identity policies. + return applicationId.HasValue ? (ap.ApplicationId == applicationId && ap.ObjectId == objectId) : + (ap.ObjectId == objectId); + } } } diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs index f2b82abf3ddb..0013027a75cf 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs @@ -87,6 +87,15 @@ public class SetAzureKeyVaultAccessPolicy : KeyVaultManagementCmdletBase [ValidateNotNullOrEmpty()] public Guid ObjectId { get; set; } + /// + /// Id of the application to which a user delegate to + /// + [Parameter(Mandatory = false, + ParameterSetName = ByObjectId, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Specifies the ID of application that a user must use to grant permissions.")] + public Guid? ApplicationId { get; set; } + /// /// Permissions to Keys /// @@ -148,8 +157,8 @@ public class SetAzureKeyVaultAccessPolicy : KeyVaultManagementCmdletBase #endregion public override void ExecuteCmdlet() - { - ResourceGroupName = string.IsNullOrWhiteSpace(ResourceGroupName) ? GetResourceGroupName(VaultName) : ResourceGroupName; + { + ResourceGroupName = string.IsNullOrWhiteSpace(ResourceGroupName) ? GetResourceGroupName(VaultName) : ResourceGroupName; PSKeyVaultModels.PSVault vault = null; // Get the vault to be updated @@ -168,6 +177,9 @@ public override void ExecuteCmdlet() { Guid objId = GetObjectId(this.ObjectId, this.UserPrincipalName, this.ServicePrincipalName); + if (ApplicationId.HasValue && ApplicationId.Value == Guid.Empty) + throw new ArgumentException(PSKeyVaultProperties.Resources.InvalidApplicationId); + //Both arrays cannot be null if (PermissionsToKeys == null && PermissionsToSecrets == null) throw new ArgumentException(PSKeyVaultProperties.Resources.PermissionsNotSpecified); @@ -179,8 +191,8 @@ public override void ExecuteCmdlet() if (!IsMeaningfulPermissionSet(PermissionsToSecrets)) throw new ArgumentException(string.Format(PSKeyVaultProperties.Resources.PermissionSetIncludesAllPlusOthers, "secrets")); - //Is there an existing policy for this object ID? - var existingPolicy = vault.AccessPolicies.Where(ap => ap.ObjectId == objId).FirstOrDefault(); + //Is there an existing policy for this policy identity? + var existingPolicy = vault.AccessPolicies.Where(ap => MatchVaultAccessPolicyIdentity(ap, objId, ApplicationId)).FirstOrDefault(); //New policy will have permission arrays that are either from cmdlet input //or if that's null, then from the old policy for this object ID if one existed @@ -192,11 +204,11 @@ public override void ExecuteCmdlet() (existingPolicy != null && existingPolicy.PermissionsToSecrets != null ? existingPolicy.PermissionsToSecrets.ToArray() : null); - //Remove old policies for this object ID and add a new one with the right permissions, iff there were some non-empty permissions - updatedListOfAccessPolicies = vault.AccessPolicies.Where(ap => ap.ObjectId != objId).ToArray(); + //Remove old policies for this policy identity and add a new one with the right permissions, iff there were some non-empty permissions + updatedListOfAccessPolicies = vault.AccessPolicies.Where(ap => !MatchVaultAccessPolicyIdentity(ap, objId, this.ApplicationId)).ToArray(); if ((keys != null && keys.Length > 0) || (secrets != null && secrets.Length > 0)) { - var policy = new PSKeyVaultModels.PSVaultAccessPolicy(vault.TenantId, objId, keys, secrets); + var policy = new PSKeyVaultModels.PSVaultAccessPolicy(vault.TenantId, objId, this.ApplicationId, keys, secrets); updatedListOfAccessPolicies = updatedListOfAccessPolicies.Concat(new[] { policy }).ToArray(); } @@ -210,6 +222,11 @@ public override void ExecuteCmdlet() WriteObject(updatedVault); } + private bool MatchVaultAccessPolicyIdentity(PSKeyVaultModels.PSVaultAccessPolicy ap, Guid objectId, Guid? applicationId) + { + return ap.ApplicationId == applicationId && ap.ObjectId == objectId; + } + private bool IsMeaningfulPermissionSet(string[] perms) { if (perms == null || perms.Length == 0) diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Microsoft.Azure.Commands.KeyVault.format.ps1xml b/src/ResourceManager/KeyVault/Commands.KeyVault/Microsoft.Azure.Commands.KeyVault.format.ps1xml index f7f79b686009..de0b5bd36f1b 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Microsoft.Azure.Commands.KeyVault.format.ps1xml +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Microsoft.Azure.Commands.KeyVault.format.ps1xml @@ -218,6 +218,10 @@ ObjectId + + + ApplicationIdDisplayName + DisplayName diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/ModelExtensions.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/ModelExtensions.cs index edf703dab668..42df2953a8d9 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/ModelExtensions.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/ModelExtensions.cs @@ -63,18 +63,20 @@ public static string ConstructAccessPoliciesTableAsTable(IEnumerable 0) { - string rowFormat = "{0, -40} {1, -40} {2, -40} {3, -40}\r\n"; + string rowFormat = "{0, -40} {1, -40} {2, -40} {3, -40} {4, -40}\r\n"; sb.AppendLine(); - sb.AppendFormat(rowFormat, "Tenant ID", "Object ID", "Permissions to keys", "Permissions to secrets"); + sb.AppendFormat(rowFormat, "Tenant ID", "Object ID", "Application ID", "Permissions to keys", "Permissions to secrets"); sb.AppendFormat(rowFormat, GeneralUtilities.GenerateSeparator("Tenant ID".Length, "="), - GeneralUtilities.GenerateSeparator("Object ID".Length, "="), + GeneralUtilities.GenerateSeparator("Object ID".Length, "="), + GeneralUtilities.GenerateSeparator("Application ID".Length, "="), GeneralUtilities.GenerateSeparator("Permissions To Keys".Length, "="), GeneralUtilities.GenerateSeparator("Permissions To Secrets".Length, "=")); foreach(var policy in policies) { - sb.AppendFormat(rowFormat, policy.TenantId.ToString(), policy.DisplayName, TrimWithEllipsis(policy.PermissionsToKeysStr, 40), TrimWithEllipsis(policy.PermissionsToSecretsStr, 40)); + sb.AppendFormat(rowFormat, policy.TenantId.ToString(), policy.DisplayName, policy.ApplicationIdDisplayName, + TrimWithEllipsis(policy.PermissionsToKeysStr, 40), TrimWithEllipsis(policy.PermissionsToSecretsStr, 40)); } } @@ -93,6 +95,7 @@ public static string ConstructAccessPoliciesList(IEnumerable() : new List(permissionsToSecrets); PermissionsToKeys = permissionsToKeys == null ? new List() : new List(permissionsToKeys); } @@ -32,6 +33,7 @@ public PSVaultAccessPolicy(KeyVaultManagement.AccessPolicyEntry s, PSResourceMan { ObjectId = s.ObjectId; DisplayName = ModelExtensions.GetDisplayNameForADObject(s.ObjectId, adClient); + ApplicationId = s.ApplicationId; TenantId = s.TenantId; TenantName = s.TenantId.ToString(); PermissionsToSecrets = new List(s.PermissionsToSecrets); @@ -44,7 +46,10 @@ public PSVaultAccessPolicy(KeyVaultManagement.AccessPolicyEntry s, PSResourceMan public Guid ObjectId { get; private set; } - public string DisplayName { get; private set; } + public Guid? ApplicationId { get; private set; } + public string DisplayName { get; private set; } + + public string ApplicationIdDisplayName { get { return this.ApplicationId.HasValue ? this.ApplicationId.Value.ToString() : string.Empty; } } public List PermissionsToKeys { get; private set; } diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/VaultManagementClient.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/VaultManagementClient.cs index d6d37f43a1ce..2836d2e03edd 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/VaultManagementClient.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/VaultManagementClient.cs @@ -154,6 +154,7 @@ public PSVault UpdateVault(PSVault existingVault, PSVaultAccessPolicy[] updatedP { TenantId = a.TenantId, ObjectId = a.ObjectId, + ApplicationId = a.ApplicationId, PermissionsToKeys = a.PermissionsToKeys.ToArray(), PermissionsToSecrets = a.PermissionsToSecrets.ToArray() }).ToList(); diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs index b1608b1a464c..ceb259a19a5c 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs @@ -105,6 +105,15 @@ internal static string ImportByokAsSoftkeyError { } } + /// + /// Looks up a localized string similar to Invalid application Id.. + /// + internal static string InvalidApplicationId { + get { + return ResourceManager.GetString("InvalidApplicationId", resourceCulture); + } + } + /// /// Looks up a localized string similar to Invalid AzureEnvironment.. /// diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx index a8ab3c5e1ec1..ed4393a3f7b1 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx @@ -132,6 +132,9 @@ BYOK key can not be imported as software key + + Invalid application Id. + Invalid AzureEnvironment. diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config b/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config index 982ea4710a88..d890c5aca440 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config @@ -5,9 +5,9 @@ - + - + From 3865aa7c25b35c1427cba3c1b00cd27cc45aa442 Mon Sep 17 00:00:00 2001 From: Yuhui Zhong Date: Fri, 15 May 2015 11:51:32 -0700 Subject: [PATCH 29/40] Re-record tests --- .../TestCreateDeleteVaultWithPiping.json | 144 +++--- ...teNewPremiumVaultEnabledForDeployment.json | 86 ++-- .../TestCreateNewVault.json | 104 ++--- .../TestCreateVaultInUnknownResGrpFails.json | 68 +-- .../TestCreateVaultPositionalParams.json | 86 ++-- .../TestDeleteUnknownVaultFails.json | 32 +- .../TestDeleteVaultByName.json | 130 +++--- .../TestGetUnknownVaultFails.json | 26 +- .../TestGetVaultByName.json | 48 +- .../TestGetVaultByNameAndResourceGroup.json | 28 +- ...yNameAndResourceGroupPositionalParams.json | 28 +- ...GetVaultFromUnknownResourceGroupFails.json | 30 +- .../TestListAllVaultsInSubscription.json | 30 +- .../TestListVaultsByResourceGroup.json | 28 +- .../TestListVaultsByTag.json | 28 +- ...ListVaultsByUnknownResourceGroupFails.json | 28 +- .../TestModifyAccessPolicy.json | 414 ++++++++--------- ...odifyAccessPolicyEnabledForDeployment.json | 218 ++++----- .../TestModifyAccessPolicyNegativeCases.json | 146 +++--- .../TestRecreateVaultFails.json | 30 +- ...oveAccessPolicyWithCompoundIdPolicies.json | 438 +++++++++--------- ...veNonExistentAccessPolicyDoesNotThrow.json | 64 +-- .../TestSetCompoundIdAccessPolicy.json | 400 ++++++++-------- ...TestSetRemoveAccessPolicyByCompoundId.json | 154 +++--- .../TestSetRemoveAccessPolicyByObjectId.json | 152 +++--- .../TestSetRemoveAccessPolicyBySPN.json | 238 +++++----- .../TestSetRemoveAccessPolicyByUPN.json | 152 +++--- 27 files changed, 1665 insertions(+), 1665 deletions(-) diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateDeleteVaultWithPiping.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateDeleteVaultWithPiping.json index 41dc0a972fa1..3b50c9e19174 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateDeleteVaultWithPiping.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateDeleteVaultWithPiping.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4506" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14963" ], "x-ms-request-id": [ - "7cd214d0-3fbb-4659-ad6f-d1edefe51650" + "82df576f-843b-4d95-b15c-e9fd60cbd03b" ], "x-ms-correlation-request-id": [ - "7cd214d0-3fbb-4659-ad6f-d1edefe51650" + "82df576f-843b-4d95-b15c-e9fd60cbd03b" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194702Z:7cd214d0-3fbb-4659-ad6f-d1edefe51650" + "WESTUS:20150515T233320Z:82df576f-843b-4d95-b15c-e9fd60cbd03b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:47:02 GMT" + "Fri, 15 May 2015 23:33:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "JOcOImGbsHySgKlAQbtemgj5KuX+mrNNzouN4cLWfY8=" + "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" ], "request-id": [ - "42d0a7b2-d64f-4efa-8677-79ebbc575cf7" + "c68c8e7d-44a7-4316-8209-00217e8bb210" ], "client-request-id": [ - "9a08583f-1cbb-4d6f-bd27-100bf55c31d2" + "0705c55e-5523-449c-8ecf-a8b3747fa422" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "bpI8uFmH-RreoNzaLICuwS29zwjlTaFvArm7wL_J9RbA9HS4RSHE7h64X_GH8AL4b5Lbec1qV4go8Yx9CDrsmt3LLsGITskm13l0S_d-Fltf01MZjzEk3GvWmCVF5WoS.UHIPlaaNujfov4G4Zlm8qDrSrrY8YWToZJeuUi3P0fQ" + "kE9Fw_ShMqpfps2UIBQPhWfyXrM79zlDR6EMoJSZ5RJiKyZ0uQkKS-BxZb_rptv4ud1svpA8DPvLdTwFWABU8pOMctj9fAGwXZtZnB7jYxD-Nr3_mJAThV3GPbG3gwiQ.p57ImzGU7j-HX4NwaxWEo9BrJPkabm1ys8NAza7fwIo" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:47:01 GMT" + "Fri, 15 May 2015 23:33:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODMwND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1345?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMTM0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -137,7 +137,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304\",\r\n \"name\": \"onesdk8304\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk8304.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1345\",\r\n \"name\": \"onesdk1345\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk1345.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "642" @@ -155,22 +155,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-request-id": [ - "9e2d3eca-ac43-4cf7-a043-8a987e5a2c19" + "e0efe966-f66f-4a20-b805-7e1d5b0c2c88" ], "x-ms-correlation-request-id": [ - "9e2d3eca-ac43-4cf7-a043-8a987e5a2c19" + "e0efe966-f66f-4a20-b805-7e1d5b0c2c88" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194709Z:9e2d3eca-ac43-4cf7-a043-8a987e5a2c19" + "WESTUS:20150515T233324Z:e0efe966-f66f-4a20-b805-7e1d5b0c2c88" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:47:08 GMT" + "Fri, 15 May 2015 23:33:24 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -185,8 +185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -194,10 +194,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -209,13 +209,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iuPmgCujsBOHP5ZHyhzOWZQ0FRP7jUfzbegvNsa5PFc=" + "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" ], "request-id": [ - "126e792d-c1da-40fe-91e1-03bbef1b0eda" + "a8cf5aa7-52ed-4191-9795-2babb6605e46" ], "client-request-id": [ - "452db66e-f3bf-4a2f-b060-146c65ddfc6b" + "4dcc568c-7201-4a40-b076-085ec539b32b" ], "x-ms-gateway-rewrite": [ "false" @@ -224,7 +224,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "Bl72YXYsFNRfvvpGin79UFc71lPP_l1B7NofpVhaHm0g29iCd4X-aho1sofXsB4Hsq37iHusASOCOnX8EKQY-rdfmwjCpUpTpF51Wsyjn6TYYa4stylbCDttKd_7U0Gj.8CXzqffpFRnAFE9TnZMw8OJDR4U8Fr48hf0tPL2hLvU" + "M072A1-DGne2F50GiJmTMUtySA5IK5CpyOgFM0M0p16EZVrvJpTwXLRg61VoyviuoUrn6gtCFXHB4TwjY_GIN_Sb2OIyIlSnRUtYNiZEqWMPhSnPnIJzvBOomjKk7poo.04GWvfPMpZg_fUvz1MbZ4PzKEiz2tUjYEn3KxlOlohs" ], "X-Content-Type-Options": [ "nosniff" @@ -252,14 +252,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:47:09 GMT" + "Fri, 15 May 2015 23:33:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -267,10 +267,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "30icSeY/bVr9Xoytdat1AuqgYDoWTl+qNMdr2ZkR20g=" + "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" ], "request-id": [ - "78a5831d-42cf-42a4-a761-615dde48ae7d" + "5b1aadb4-1a86-4d0e-b42e-cdfadb1d4de2" ], "client-request-id": [ - "294da5a2-4185-4ef8-9bbc-c4a19d540afe" + "c626baf4-7f1a-4f02-9734-e111450d5592" ], "x-ms-gateway-rewrite": [ "false" @@ -297,7 +297,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "TFWoJth4HCYqemu9WlXuLF4YhEhJ5hl2jha2ebNH5bx3maAjuZ5_gLJwvciY-fBStd1N71LAPfZKpK8k-oq9HQ_vVfjzKZi8b-B-rQZzOr2zKglQxniCe5kYjB5hyyh9.v-6gT7tkW3a5XixD43goJfC4KEoxHHwpfBU6abGVcJw" + "hJ8aapKnXZm70v23EaH8uspMk8m4tIMpZHY9uNPZLIv_WjJSx7KNUyqKDpJAFoE0w593tDx-sWwmjYezTskSZyYep7e7CTgOQJ_aYYVgwzJpApyZMVvz0PfzTSgUoH-d.Twox34ZkDAQ02LeO2RXcxrfmM7ihSdSDgiodmQcxbX4" ], "X-Content-Type-Options": [ "nosniff" @@ -325,14 +325,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:47:09 GMT" + "Fri, 15 May 2015 23:33:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODMwND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1345?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMTM0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -340,7 +340,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304\",\r\n \"name\": \"onesdk8304\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk8304.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1345\",\r\n \"name\": \"onesdk1345\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk1345.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "643" @@ -361,19 +361,19 @@ "14998" ], "x-ms-request-id": [ - "1c407909-4b01-458a-84d1-09bd13052198" + "038e9c9c-d427-48f8-b4b2-d16a45611a7e" ], "x-ms-correlation-request-id": [ - "1c407909-4b01-458a-84d1-09bd13052198" + "038e9c9c-d427-48f8-b4b2-d16a45611a7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194709Z:1c407909-4b01-458a-84d1-09bd13052198" + "WESTUS:20150515T233324Z:038e9c9c-d427-48f8-b4b2-d16a45611a7e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:47:09 GMT" + "Fri, 15 May 2015 23:33:24 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -388,8 +388,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODMwND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1345?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMTM0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -415,13 +415,13 @@ "gateway" ], "x-ms-request-id": [ - "86a95725-9d13-42a7-adaa-f5f7794fedee" + "397e9339-3698-489a-b559-6dd3e8b88d3f" ], "x-ms-correlation-request-id": [ - "86a95725-9d13-42a7-adaa-f5f7794fedee" + "397e9339-3698-489a-b559-6dd3e8b88d3f" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194712Z:86a95725-9d13-42a7-adaa-f5f7794fedee" + "WESTUS:20150515T233327Z:397e9339-3698-489a-b559-6dd3e8b88d3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -430,14 +430,14 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:47:11 GMT" + "Fri, 15 May 2015 23:33:27 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk8304?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODMwND9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1345?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMTM0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -460,22 +460,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-request-id": [ - "105a6dba-65af-454c-97e6-ffcdfad158be" + "9214c57e-7263-419a-8f38-eb767ddeb606" ], "x-ms-correlation-request-id": [ - "105a6dba-65af-454c-97e6-ffcdfad158be" + "9214c57e-7263-419a-8f38-eb767ddeb606" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194711Z:105a6dba-65af-454c-97e6-ffcdfad158be" + "WESTUS:20150515T233327Z:9214c57e-7263-419a-8f38-eb767ddeb606" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:47:11 GMT" + "Fri, 15 May 2015 23:33:27 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -492,16 +492,16 @@ ], "Names": { "Test-CreateDeleteVaultWithPiping": [ - "onesdk8304" + "onesdk1345" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewPremiumVaultEnabledForDeployment.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewPremiumVaultEnabledForDeployment.json index 5af4e2c00560..0535168011d2 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewPremiumVaultEnabledForDeployment.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewPremiumVaultEnabledForDeployment.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1172\",\r\n \"name\": \"onesdk1172\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4987" + "734" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14995" ], "x-ms-request-id": [ - "d91aca62-d3a7-4daf-9de7-078362e54ce8" + "5531e8d4-9c82-44e4-b4c5-e94895017ea6" ], "x-ms-correlation-request-id": [ - "d91aca62-d3a7-4daf-9de7-078362e54ce8" + "5531e8d4-9c82-44e4-b4c5-e94895017ea6" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195607Z:d91aca62-d3a7-4daf-9de7-078362e54ce8" + "WESTUS:20150515T233810Z:5531e8d4-9c82-44e4-b4c5-e94895017ea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:56:06 GMT" + "Fri, 15 May 2015 23:38:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "F2LOr8r7qijtW7xVmU1aLk3kz6clyv8DNEw2XQfFr2A=" + "HU7qlXRtX8KLODQBO5CdOeWfpuntgqWle5baRvCgDQc=" ], "request-id": [ - "d92be35e-cab2-4b29-b37f-fa43e63c6b89" + "1245d211-3db5-43e6-8970-0875b420fb73" ], "client-request-id": [ - "4556b7d4-0286-42ac-82a5-584bc3056889" + "9cd2e90c-e675-4fbf-ba5c-f285bf90d287" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "qd2uHtR_cKuZQK470dIDvZEIz9u1HZEHC7UrFm_wDprA-n8Y9-ASFf_EU-ru6YZicf8DFI_6VRnoomPdeBcAch4-X1KFffOAIOnxjJWX8F8_W9fi84syYdfzJeoInI77PoJIwDX2clXxtTfdyWRkcQ.nsJ8xcWuSZ-5c5FiQm9y6hMyP-XZSU8a8y9Xtwu9Flc" + "0O1dm-4cvYhTRF5VMQjB8tOAOljS-uijU8XsUmPqEpQEGkZNUPt5UOxwVJj0DL769kWcwMDkv3FJyfSB7W9Ql-R4ZJzzHsuLAQT8lsqlRmKAnJaUB70qZrDJeDPF-cmH5Um26rj4oJIvsd70ePcWEg.3r8RoTGJxtapZkRcD0G5tTAa7SRn478im-3pAq8U2bs" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:56:07 GMT" + "Fri, 15 May 2015 23:38:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk284?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMjg0P2FwaS12ZXJzaW9uPTIwMTQtMTItMTktUFJFVklFVw==", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk568?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNTY4P2FwaS12ZXJzaW9uPTIwMTQtMTItMTktUFJFVklFVw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -137,7 +137,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk284\",\r\n \"name\": \"onesdk284\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://onesdk284.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk568\",\r\n \"name\": \"onesdk568\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://onesdk568.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "637" @@ -155,22 +155,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "c73a051f-e0cd-47ad-ac88-a877624db091" + "3d464b29-c013-4e63-8704-0a9546422478" ], "x-ms-correlation-request-id": [ - "c73a051f-e0cd-47ad-ac88-a877624db091" + "3d464b29-c013-4e63-8704-0a9546422478" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195610Z:c73a051f-e0cd-47ad-ac88-a877624db091" + "WESTUS:20150515T233814Z:3d464b29-c013-4e63-8704-0a9546422478" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:56:10 GMT" + "Fri, 15 May 2015 23:38:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -185,8 +185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -194,10 +194,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -209,13 +209,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+3h+Ymp508o5Yv2+joJ0aHNKxLQZErHQiFUCChRGlLo=" + "fhlmJNLYPnp764O9rf98r+032N8xEbAipKeUghbHIVU=" ], "request-id": [ - "3ac90849-5fe3-4349-9d33-fe1cbe177fe0" + "79581f23-6af6-40e4-a95a-724ecca02295" ], "client-request-id": [ - "253802a6-8690-4338-b1c1-bc2b23c86d08" + "2ca7677b-066d-4667-a647-68a96cd40a5a" ], "x-ms-gateway-rewrite": [ "false" @@ -224,7 +224,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "zSypM5WXdQq0YHq3CTTLZ06gW-FZM1_7G8CU26zxWw8Ob477TavDgB0NdppQk6O92QMWi-G7t2Gy5w7hjS9L4PDwPuvnLhgLVXWYWzIFiXmVlNmL94yWoU_pZpWCIdS8hP8vWm5AwT0rdeDFDAti6A.zUm6OxZd4fePIi6JwxFbMgA9W36_p6DxYXwxdA5a5KA" + "x76S0AkiEQLlVO-id-od0oNfAb0XdodFjdLkyzKDcdHEeMm7QpN1IcaBf_43nOHS_tIAseMSgqv9ljzxqUzpFPv1s7ViJ3Th8ny_y2A_HKgvne0KhW_6bkN2V8oJXNp3RZgl0i89j9XFCL9o8lYZ9g.2t7XDMATZ2BHEuq2ZEcXQCJG0ST6tVCwjWs9qupc0fI" ], "X-Content-Type-Options": [ "nosniff" @@ -252,7 +252,7 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:56:11 GMT" + "Fri, 15 May 2015 23:38:14 GMT" ] }, "StatusCode": 200 @@ -260,16 +260,16 @@ ], "Names": { "Test-CreateNewPremiumVaultEnabledForDeployment": [ - "onesdk284" + "onesdk568" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json index 05607db0cbc9..de7b464cd175 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateNewVault.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4736" + "253" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14997" ], "x-ms-request-id": [ - "a310eff0-1b0b-4acc-b92f-56bf9b279657" + "e7730adb-1dbf-4bd1-8e24-48a9a81bacea" ], "x-ms-correlation-request-id": [ - "a310eff0-1b0b-4acc-b92f-56bf9b279657" + "e7730adb-1dbf-4bd1-8e24-48a9a81bacea" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195312Z:a310eff0-1b0b-4acc-b92f-56bf9b279657" + "WESTUS:20150515T233503Z:e7730adb-1dbf-4bd1-8e24-48a9a81bacea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:53:12 GMT" + "Fri, 15 May 2015 23:35:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fhlmJNLYPnp764O9rf98r+032N8xEbAipKeUghbHIVU=" + "OwiQwVxuZXWAznx4rYbzGrX1SXicMuwxX8McepXFTKk=" ], "request-id": [ - "13a57705-d9fb-47e7-9bc5-75820dc2d523" + "e20c77fe-4180-4b7a-a62b-f278c5b46150" ], "client-request-id": [ - "64017679-0e33-467a-91d3-a3a1a8090b2b" + "e37c8156-1996-4f8d-8b93-0e0c728479d3" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "2Cju-MHvnZqgcRSs4WkRuX6z_TAvEU0W_vILpiUId4m4VEzXky2cv18rPYI14h0mbwESXM8e5drfJgrqVuoUQ7MagaPRebYLgxp7Jboy3ShH0La-bwHp4Fc9J83BxJP2ngdzGOobNMrKRmo-R-xceQ.10AFcFIE5uAbXuE-ZpQ2wn822mWMWZVbMNPuEBAWGZI" + "13dEwamFkNJKJzno6FmKN-EOGdsWjvuaeyQjnT8ayz0JHJGsrnfbdzbPXpGJLHgGLHFdznif5EpDnUznIUBqgHPNtPEy7mjGO_iXRTGxzjk3uBAOOQ6dh-heW8qSe540.bOeJ_OPZTVzhaSj6XoFlHpPZjwoM-cE1uXu_VwUSM64" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:53:13 GMT" + "Fri, 15 May 2015 23:35:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMjc4Mj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNTAwMD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -137,7 +137,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk2782.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk5000.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "663" @@ -155,22 +155,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-request-id": [ - "aece5719-ea05-4672-b9ae-d755a05945c6" + "21ee1c70-cada-4bbd-a1bf-c2ef416e99d6" ], "x-ms-correlation-request-id": [ - "aece5719-ea05-4672-b9ae-d755a05945c6" + "21ee1c70-cada-4bbd-a1bf-c2ef416e99d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195317Z:aece5719-ea05-4672-b9ae-d755a05945c6" + "WESTUS:20150515T233507Z:21ee1c70-cada-4bbd-a1bf-c2ef416e99d6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:53:16 GMT" + "Fri, 15 May 2015 23:35:07 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -185,8 +185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -194,10 +194,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -209,13 +209,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DY7TQaBcGBdxiyBwhXtHOCQG2f/I+ISxBVfzVwhFykU=" + "IlzPA8p9JAId4Jehp6ulnqd1ubBmMgtDr/5i3+50suY=" ], "request-id": [ - "0e26bf75-035a-4e6b-8d9d-e793a81077dd" + "2601090d-d077-44e7-94db-a0d668dc6a7b" ], "client-request-id": [ - "97146ad1-7ec7-453c-9436-e557486f6f4a" + "6b1c058f-6c03-4dad-be61-f6485c32f076" ], "x-ms-gateway-rewrite": [ "false" @@ -224,7 +224,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "3A7Vrwmj0xUqnV98Fpp8FGbMBrPOkmq9nR6jUsPBInTYLOjPlIhU_ljIBt7GmW-BQU0YmSPSKo5HANtwQly79a64QYKaZ_9HcskzYJe9BLQIuUXPcGk8jeDYOqpVv09jj-8MbkZrvHt4GtUjzCIDUA.6s6X_1kw3-eHcT9O65KiSiYTIO8Ir-xB4Mm31zTeLV0" + "6I_wFrFTreKZ9F6wRVWF9RkpTtjqpqjMw8cTNvXonB3vIRPKJzbeFkuxoR3ot1YCA381RZNgGgCcHZqqVyf-Vdz5IS6XagaYLpTu1yYLQB85rSvle754t5I5pDHV6JIB.38y5iQv451ztplf0VXRmebMlOB3b_Ys-EXEkYCIqJu8" ], "X-Content-Type-Options": [ "nosniff" @@ -252,14 +252,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:53:17 GMT" + "Fri, 15 May 2015 23:35:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users?$filter=signInName%20eq%20'divyag%40ntdev.microsoft.com'&api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycz8kZmlsdGVyPXNpZ25Jbk5hbWUlMjBlcSUyMCdkaXZ5YWclNDBudGRldi5taWNyb3NvZnQuY29tJyZhcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users?$filter=signInName%20eq%20'kvtest%40yuhuizhotmail.onmicrosoft.com'&api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycz8kZmlsdGVyPXNpZ25Jbk5hbWUlMjBlcSUyMCdrdnRlc3QlNDB5dWh1aXpob3RtYWlsLm9ubWljcm9zb2Z0LmNvbScmYXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -267,10 +267,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7218" + "1954" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" + "OwiQwVxuZXWAznx4rYbzGrX1SXicMuwxX8McepXFTKk=" ], "request-id": [ - "5f975ec0-516a-4599-b9d6-c6c0348fb676" + "cc0b6e7f-da65-42c9-875b-5a2f54cbcdf6" ], "client-request-id": [ - "c2d63d6a-c1c2-4d37-be19-47541bb640b5" + "02ad62f8-b9a8-49e7-b79d-56962da8366a" ], "x-ms-gateway-rewrite": [ "false" @@ -297,7 +297,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "Efln4fZi2u79VW_QSxGoCj76Js5_8Whg_s2l_skzS_i3HaguSC93UPrupxaeZRKh5XKNxtTztqIuijw10dB3qGSRJRCkxzZZD1yINqImw8OZrDQyGkV9-TTYCrCjWm9fYLMHdNt5Rfmw9QsAQvIeKA.oXjIJlKrlI_JTsvCMX2mGrxtXCl2NEh0P4Gckp2gJ_M" + "8htD8txNrzwuzGF7uneJMFSPFw8Pd-bjTxQq3cqTkDEm3S6xQwfFlx82UyTx4iPTegoLbmwHw9Jz8S99GJzO49IEPcr-R5y18jt9UnZJkBeJYUsiZrZXy38fZ0Y3nE1U.jTgmhR8pBxRIBzzVma6UaALKeYl_0A9Nb2XSoE3XUWY" ], "X-Content-Type-Options": [ "nosniff" @@ -325,7 +325,7 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:53:17 GMT" + "Fri, 15 May 2015 23:35:07 GMT" ] }, "StatusCode": 200 @@ -333,16 +333,16 @@ ], "Names": { "Test-CreateNewVault": [ - "onesdk2782" + "onesdk5000" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultInUnknownResGrpFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultInUnknownResGrpFails.json index a524e4f90437..a1b698d70a37 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultInUnknownResGrpFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultInUnknownResGrpFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4527" + "504" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14967" ], "x-ms-request-id": [ - "13b5d5c8-4451-4d98-9ad4-2ae90009d017" + "da08401a-8c1d-4fbb-bc26-98a38c275271" ], "x-ms-correlation-request-id": [ - "13b5d5c8-4451-4d98-9ad4-2ae90009d017" + "da08401a-8c1d-4fbb-bc26-98a38c275271" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194522Z:13b5d5c8-4451-4d98-9ad4-2ae90009d017" + "WESTUS:20150515T233651Z:da08401a-8c1d-4fbb-bc26-98a38c275271" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:45:22 GMT" + "Fri, 15 May 2015 23:36:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "csgseorRlJAybnlhqMV57B9hDXS3vgD6FG/g5k0RWg8=" + "VE96ymV+N7+qIsCyCRMEXtWtFdJRAMYbA69ATN4L+b0=" ], "request-id": [ - "c6d6c6db-252b-4913-a4d3-d369b4e2be4e" + "ed5643ad-f432-4bde-a591-764084db88a3" ], "client-request-id": [ - "bba1a1c0-d9a8-454d-a45e-b66262b8472a" + "d88a069d-54bb-46d0-bd70-375c1074ea41" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "GBvrWRxTaHnG7a5wfeQZ1COBTZgpD2QBvFgMEcGrRNj28jcm2GOk5B-sRxMyu-0lZLhT1mOIXS9vsn5BbPScH8g1k1F2-6u6_ESnzZ-3qZ6b4HnHt-ILUPdJaMkGvl1X.V0RwHY3JX1Whd2Ihb2dgrxphkuRx4D5QcnABfnDVfL0" + "BCrMa10HOGO0hNUtJVXv8ItrE5YAf7QKZO3qp5cyg3BMwQinWRY7y5gCLb6DF3HH_wbm7xg_EiSjXGe8791kCkrIkqqpibj2qGrycUMsSXWwU4UpEI3YrrgK2vtqiozDvdghAGANr6VGHgLRFmRr3Q._YAgkw-Wzr0Q-QsF7-nFLd-8SBV17aLC9BbnZX_BjEw" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:45:22 GMT" + "Fri, 15 May 2015 23:36:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/onesdk6536/providers/Microsoft.KeyVault/vaults/onesdk3079?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL29uZXNkazY1MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMzA3OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/onesdk2548/providers/Microsoft.KeyVault/vaults/onesdk4472?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNDQ3Mj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -137,7 +137,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk6536' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk2548' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -155,13 +155,13 @@ "gateway" ], "x-ms-request-id": [ - "014f00d5-09db-4dc3-8f80-5b791085864a" + "4f51018a-e183-4886-92d7-f99d6e050b46" ], "x-ms-correlation-request-id": [ - "014f00d5-09db-4dc3-8f80-5b791085864a" + "4f51018a-e183-4886-92d7-f99d6e050b46" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194523Z:014f00d5-09db-4dc3-8f80-5b791085864a" + "WESTUS:20150515T233652Z:4f51018a-e183-4886-92d7-f99d6e050b46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -170,7 +170,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:45:23 GMT" + "Fri, 15 May 2015 23:36:51 GMT" ] }, "StatusCode": 404 @@ -178,17 +178,17 @@ ], "Names": { "Test-CreateVaultInUnknownResGrpFails": [ - "onesdk3079", - "onesdk6536" + "onesdk4472", + "onesdk2548" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultPositionalParams.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultPositionalParams.json index dfe6618ae6ff..859a823d05d3 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultPositionalParams.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestCreateVaultPositionalParams.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4506" + "504" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14989" ], "x-ms-request-id": [ - "fc22a3eb-6ee9-46ab-9189-ee19cfe03371" + "af6363c8-5f80-4fd6-9d42-bc93195afe16" ], "x-ms-correlation-request-id": [ - "fc22a3eb-6ee9-46ab-9189-ee19cfe03371" + "af6363c8-5f80-4fd6-9d42-bc93195afe16" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195242Z:fc22a3eb-6ee9-46ab-9189-ee19cfe03371" + "WESTUS:20150515T233743Z:af6363c8-5f80-4fd6-9d42-bc93195afe16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:52:42 GMT" + "Fri, 15 May 2015 23:37:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -73,13 +73,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Oqko02haJxDTRhctK/G36gK387+J0M2ZgOrTBM5zf4M=" + "b8JwnBmW0N2StQrw12MyEs8cqDo2tPAmfu0ULloQJ7M=" ], "request-id": [ - "a14e42a1-244d-4cdb-863b-f0b7dc8a305d" + "a389d83c-e8c4-4b55-849b-1d9e421bbc88" ], "client-request-id": [ - "08159f01-5aa0-4985-88c0-c4e9a0d7a2ac" + "852877fd-2bcc-4b6b-ab01-9ae00e8df612" ], "x-ms-gateway-rewrite": [ "false" @@ -88,7 +88,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "uaK6MlQDHxiWY5JxUxex8TOSC0IFIfSMXpJ090TSbtEHqpojEFOvXfzLY-AOpRpY8hyhxSgdI8tJ2PKV6VSFuFpf2WG1XV8ofsAcMzIlo1nxD4cBpGkJ6Ibr7qdiD4mWnPM7g_4Uf1rqIrX-26bkkA.HR0EMtaN2H3W5WPlbS75j9-xMMnnIbhDW1HoExMUNoc" + "tc6EOVvpOjFdetj76dN3bVOz5hyHQec95EPsM6Kyz6vJfDlQfPkz3N-sjrD7IuXq7bgXxeH7XSAbBe6fvfS_fZGVQJRxZMdHpAeYNxbnOHoWf_KJ5lDhlu6xaOakf9fkH9TcjPIvECxuhudSqGRDRw.D6z7GLtolUEBVhae8ISYzpnrDZ5cIKhC1vXm7d0NxG0" ], "X-Content-Type-Options": [ "nosniff" @@ -116,16 +116,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:52:42 GMT" + "Fri, 15 May 2015 23:37:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNTIwMj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1172?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMTE3Mj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -137,7 +137,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk5202.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1172\",\r\n \"name\": \"onesdk1172\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk1172.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "642" @@ -155,22 +155,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-request-id": [ - "f287aa39-58b9-4028-8e43-0ae68116a37f" + "75f1be1d-134f-4fe4-92ba-917deff91ea2" ], "x-ms-correlation-request-id": [ - "f287aa39-58b9-4028-8e43-0ae68116a37f" + "75f1be1d-134f-4fe4-92ba-917deff91ea2" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195246Z:f287aa39-58b9-4028-8e43-0ae68116a37f" + "WESTUS:20150515T233746Z:75f1be1d-134f-4fe4-92ba-917deff91ea2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:52:46 GMT" + "Fri, 15 May 2015 23:37:45 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -185,8 +185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -194,10 +194,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -209,13 +209,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Oqko02haJxDTRhctK/G36gK387+J0M2ZgOrTBM5zf4M=" + "b8JwnBmW0N2StQrw12MyEs8cqDo2tPAmfu0ULloQJ7M=" ], "request-id": [ - "3f4d7609-82fa-4ba4-a078-832b059f36ec" + "c425a0e9-8795-4959-9a5e-210ff7cceecb" ], "client-request-id": [ - "da6c307f-b3d1-4742-af60-cb83b7843f1c" + "1ede2e6e-8fae-4800-9469-96513a9142a9" ], "x-ms-gateway-rewrite": [ "false" @@ -224,7 +224,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "ygtU3_1Q1KZ46KRAIRZ0bt60wf122-B778SqpEoAThdKEBYbnzw5hMCyIU2uMxwEgk4ByDkcuuXCOOkX48BOnb-G0RbBPXeR5xGvqNLqigHvEfLdSOL4gSqgU0zU5-NwVRX1tZ__Jy8vUdZwkRNwiw.cK5j_wblbdMSNtKo6U1DFPOSkJb4FaVcKUV5pEZZSwg" + "BpoOMo1umjaXpnNvH7KwjhvmnW0IM70Ub9TnGsVINd1SDDf8sCiIVI8lYfEIIs3fD45obmBo3kmt9PzM7h-UQGzqmSg5p4IAJqrWLd73OBAqy6pI1XFcolvIa7Ufmd3Xg4enMEQ7GaD6DaLmsvMq9w.Cd1h8rJER6ggn8_Zh4I_p7eA-d4YBlMBfhMgLLIqSmM" ], "X-Content-Type-Options": [ "nosniff" @@ -252,7 +252,7 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:52:46 GMT" + "Fri, 15 May 2015 23:37:46 GMT" ] }, "StatusCode": 200 @@ -260,16 +260,16 @@ ], "Names": { "Test-CreateVaultPositionalParams": [ - "onesdk5202" + "onesdk1172" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteUnknownVaultFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteUnknownVaultFails.json index f47c9335ee97..05ab8e1ba191 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteUnknownVaultFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteUnknownVaultFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1172\",\r\n \"name\": \"onesdk1172\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk568\",\r\n \"name\": \"onesdk568\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4506" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14962" ], "x-ms-request-id": [ - "72e38ac6-83ad-4724-ae1c-99a2b281aa31" + "6896b7a2-ed76-4230-b878-7b734c65777f" ], "x-ms-correlation-request-id": [ - "72e38ac6-83ad-4724-ae1c-99a2b281aa31" + "6896b7a2-ed76-4230-b878-7b734c65777f" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194740Z:72e38ac6-83ad-4724-ae1c-99a2b281aa31" + "WESTUS:20150515T233949Z:6896b7a2-ed76-4230-b878-7b734c65777f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:47:40 GMT" + "Fri, 15 May 2015 23:39:49 GMT" ] }, "StatusCode": 200 @@ -51,16 +51,16 @@ ], "Names": { "Test-DeleteUnknownVaultFails": [ - "onesdk2648" + "onesdk9376" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVaultByName.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVaultByName.json index f8736c6ee3fd..b502a5aa6381 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVaultByName.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVaultByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4506" + "504" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14994" ], "x-ms-request-id": [ - "a5c2c0ec-198b-4dde-9b48-5f9151f58b0d" + "1b399f2c-eaf2-4d71-ba4c-a7c67f1c8c5f" ], "x-ms-correlation-request-id": [ - "a5c2c0ec-198b-4dde-9b48-5f9151f58b0d" + "1b399f2c-eaf2-4d71-ba4c-a7c67f1c8c5f" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195150Z:a5c2c0ec-198b-4dde-9b48-5f9151f58b0d" + "WESTUS:20150515T233530Z:1b399f2c-eaf2-4d71-ba4c-a7c67f1c8c5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:51:49 GMT" + "Fri, 15 May 2015 23:35:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547\",\r\n \"name\": \"onesdk3547\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk2672\",\r\n \"name\": \"onesdk2672\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4736" + "734" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14993" ], "x-ms-request-id": [ - "a755faa6-65a6-4ccf-b1c8-74818b4cd606" + "f4bfcfcd-ee96-4e2f-bd96-24726297af8b" ], "x-ms-correlation-request-id": [ - "a755faa6-65a6-4ccf-b1c8-74818b4cd606" + "f4bfcfcd-ee96-4e2f-bd96-24726297af8b" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195153Z:a755faa6-65a6-4ccf-b1c8-74818b4cd606" + "WESTUS:20150515T233534Z:f4bfcfcd-ee96-4e2f-bd96-24726297af8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +91,14 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:51:53 GMT" + "Fri, 15 May 2015 23:35:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -106,10 +106,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -121,13 +121,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "v3Hm4ryMiUbRFp0SVZWTWdMY+ECaxB3gLqmZMjwf8eQ=" + "OJEDlpO1nWkFXNc0DSj2m0k+EJetYq/Grjd02KZTLl8=" ], "request-id": [ - "f877466a-18c1-431f-82fb-5753193c15a0" + "a640e1d8-060a-4af1-a2c9-525cf548e4d0" ], "client-request-id": [ - "3fc9b43b-4dd3-4e21-a50e-9a99342017d0" + "fde2ff3b-b503-43e3-8ceb-af8c8f471a1b" ], "x-ms-gateway-rewrite": [ "false" @@ -136,7 +136,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "bB6nfVdk2NNxwhoaqRV1L1XrQCXeIEgVVvEXaas8D3CdDmxph_WIdhGS--jTue7Y3lcCffEjWAfPPUVoYtzGiyp31tC54G_dfvW-Ex0f4861TRBJmV_sybClPv1YkZuwCRuglW82k_mJMgDs5Ja1Vg.t8kAmQFiMe_cieqvLe5ydWWNkqzLnuJYLqy1NlQKFsg" + "NLSdNNBHiHa6hlIxl5uCOQ5DHW4uiVi2I-83PtYrZGlJbEO6zBJX1miKnuuXH86Lcm2Fs-DuQN_3CpO7IKNtUsyafY_Af9Cg2YTOnX81tkDQlSlHhitEHUZ6uNU6WVV7.vMVTwyeRSEVzeXkaT5yCPlb1NXaEkIHax1n_EkmlXVg" ], "X-Content-Type-Options": [ "nosniff" @@ -164,16 +164,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:50 GMT" + "Fri, 15 May 2015 23:35:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMzU0Nz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk2672?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMjY3Mj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -185,7 +185,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547\",\r\n \"name\": \"onesdk3547\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk3547.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk2672\",\r\n \"name\": \"onesdk2672\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Standard\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"create\",\r\n \"delete\",\r\n \"list\",\r\n \"update\",\r\n \"import\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://onesdk2672.vault.azure.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "642" @@ -203,22 +203,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1184" ], "x-ms-request-id": [ - "ffdc75d5-4412-470b-86cf-e9058f9fde6c" + "18afe151-d20e-4a3b-b731-69cbd6360646" ], "x-ms-correlation-request-id": [ - "ffdc75d5-4412-470b-86cf-e9058f9fde6c" + "18afe151-d20e-4a3b-b731-69cbd6360646" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195153Z:ffdc75d5-4412-470b-86cf-e9058f9fde6c" + "WESTUS:20150515T233534Z:18afe151-d20e-4a3b-b731-69cbd6360646" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:51:52 GMT" + "Fri, 15 May 2015 23:35:33 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -233,8 +233,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -242,10 +242,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -257,13 +257,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QHmIbgsFu1rpVDTznz9H/i9FqFuCAWYVLNRx8V7t6dU=" + "uojUeQNmnG7rHkYY6Os3AEDTrAe3OLrhcYc7TiubdLo=" ], "request-id": [ - "3bd0f35f-f2ce-497a-a0d4-0891edb6f2f7" + "4e4eaf12-66d6-4c68-a099-6e1545e7fb18" ], "client-request-id": [ - "5bffbe44-3005-4283-ae09-86db709cd2ff" + "7aac27f8-d2d4-46e9-aa93-649fed1f2549" ], "x-ms-gateway-rewrite": [ "false" @@ -272,7 +272,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "xLoPz2HHqBMhbMR-DIaaE-VOMpXcg4JoRV--blNu-21jHfU7QQdVhvLHe2gM5vngoss3nFxlKHnkgLmOZjZTt_aX62IdAcw6IYRZhwB9NGKgLwPzTMip-6UI8nlgVjlnbkLJqbDZs8_1zDIAchZ7hA.n6rsK3AiID89nba9VvJrscD8zEyVUAs9zYtsCCkXoBk" + "brYawyIrz2xyfe0KL7sqDJ7MGRcIAckTPXy--YLuaxwL9VX5HLq3bQROzF11WNPq3KWwZjxEtwGoQmHYVQqSCyqzoGEdwRj1m0lfMp2mzdoTedjKbSraV5bTzinVz2wn.rUFjWxpENSs89VCU9dnXxe6UljTAYZTlRUrMGEJ3IJs" ], "X-Content-Type-Options": [ "nosniff" @@ -300,14 +300,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:53 GMT" + "Fri, 15 May 2015 23:35:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMzU0Nz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk2672?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMjY3Mj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -330,22 +330,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1183" ], "x-ms-request-id": [ - "56ed8246-40c5-4cc1-99d0-cf928383894d" + "c6d3b04e-f86e-49bb-b69a-d59d43ec88f3" ], "x-ms-correlation-request-id": [ - "56ed8246-40c5-4cc1-99d0-cf928383894d" + "c6d3b04e-f86e-49bb-b69a-d59d43ec88f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195156Z:56ed8246-40c5-4cc1-99d0-cf928383894d" + "WESTUS:20150515T233537Z:c6d3b04e-f86e-49bb-b69a-d59d43ec88f3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:51:56 GMT" + "Fri, 15 May 2015 23:35:36 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -360,8 +360,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk3547?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMzU0Nz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk2672?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrMjY3Mj9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -387,13 +387,13 @@ "gateway" ], "x-ms-request-id": [ - "f0b488e8-855c-4e3b-8b5a-31c9bb845b84" + "29837e0d-77f3-4d63-9716-d9ba89d31390" ], "x-ms-correlation-request-id": [ - "f0b488e8-855c-4e3b-8b5a-31c9bb845b84" + "29837e0d-77f3-4d63-9716-d9ba89d31390" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195156Z:f0b488e8-855c-4e3b-8b5a-31c9bb845b84" + "WESTUS:20150515T233537Z:29837e0d-77f3-4d63-9716-d9ba89d31390" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -402,7 +402,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:51:56 GMT" + "Fri, 15 May 2015 23:35:36 GMT" ] }, "StatusCode": 404 @@ -410,16 +410,16 @@ ], "Names": { "Test-DeleteVaultByName": [ - "onesdk3547" + "onesdk2672" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetUnknownVaultFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetUnknownVaultFails.json index 2afba54d81c4..37fee31826f8 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetUnknownVaultFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetUnknownVaultFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk6295?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrNjI5NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk8859?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvb25lc2RrODg1OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -28,13 +28,13 @@ "gateway" ], "x-ms-request-id": [ - "767c5d9a-c303-4907-8c83-f146e45aa8be" + "02f14c9f-a9b2-463b-b7c9-ba1201ade40d" ], "x-ms-correlation-request-id": [ - "767c5d9a-c303-4907-8c83-f146e45aa8be" + "02f14c9f-a9b2-463b-b7c9-ba1201ade40d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195047Z:767c5d9a-c303-4907-8c83-f146e45aa8be" + "WESTUS:20150515T234002Z:02f14c9f-a9b2-463b-b7c9-ba1201ade40d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:46 GMT" + "Fri, 15 May 2015 23:40:01 GMT" ] }, "StatusCode": 404 @@ -51,16 +51,16 @@ ], "Names": { "Test-GetUnknownVaultFails": [ - "onesdk6295" + "onesdk8859" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByName.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByName.json index 88501a4cc3bb..3a1c24bf4030 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByName.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1172\",\r\n \"name\": \"onesdk1172\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk568\",\r\n \"name\": \"onesdk568\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4527" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14991" ], "x-ms-request-id": [ - "5d81fe07-5274-469c-87df-7599d52d5ce2" + "1617adc9-6ec6-491d-8ad8-34491ac0883b" ], "x-ms-correlation-request-id": [ - "5d81fe07-5274-469c-87df-7599d52d5ce2" + "1617adc9-6ec6-491d-8ad8-34491ac0883b" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194449Z:5d81fe07-5274-469c-87df-7599d52d5ce2" + "WESTUS:20150515T233937Z:1617adc9-6ec6-491d-8ad8-34491ac0883b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:44:48 GMT" + "Fri, 15 May 2015 23:39:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "469" + "447" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,22 +76,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14988" ], "x-ms-request-id": [ - "4973232a-3508-4f5a-9ad4-81599a5bc160" + "5ada6179-ef36-4c33-90b2-e994ba5b1a7e" ], "x-ms-correlation-request-id": [ - "4973232a-3508-4f5a-9ad4-81599a5bc160" + "5ada6179-ef36-4c33-90b2-e994ba5b1a7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194452Z:4973232a-3508-4f5a-9ad4-81599a5bc160" + "WESTUS:20150515T233937Z:5ada6179-ef36-4c33-90b2-e994ba5b1a7e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:44:52 GMT" + "Fri, 15 May 2015 23:39:37 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -108,12 +108,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroup.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroup.json index 4f5512eea3eb..112718d31e88 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroup.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroup.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14963" ], "x-ms-request-id": [ - "450fb3d9-f5bc-46c2-b233-1adfbad16953" + "23f3cd8c-1d96-446f-ac0c-32b74d6f1c0c" ], "x-ms-correlation-request-id": [ - "450fb3d9-f5bc-46c2-b233-1adfbad16953" + "23f3cd8c-1d96-446f-ac0c-32b74d6f1c0c" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195541Z:450fb3d9-f5bc-46c2-b233-1adfbad16953" + "WESTUS:20150515T234027Z:23f3cd8c-1d96-446f-ac0c-32b74d6f1c0c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:55:41 GMT" + "Fri, 15 May 2015 23:40:27 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -60,12 +60,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroupPositionalParams.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroupPositionalParams.json index 5401a156f5d7..55aa0a9a5873 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroupPositionalParams.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultByNameAndResourceGroupPositionalParams.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14973" ], "x-ms-request-id": [ - "6cf3c258-789a-4ed3-bf0e-da64a719077f" + "55b496db-9856-4c3a-a8a4-f970b425750a" ], "x-ms-correlation-request-id": [ - "6cf3c258-789a-4ed3-bf0e-da64a719077f" + "55b496db-9856-4c3a-a8a4-f970b425750a" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195707Z:6cf3c258-789a-4ed3-bf0e-da64a719077f" + "WESTUS:20150515T233758Z:55b496db-9856-4c3a-a8a4-f970b425750a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:57:06 GMT" + "Fri, 15 May 2015 23:37:58 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -60,12 +60,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultFromUnknownResourceGroupFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultFromUnknownResourceGroupFails.json index ac5eae2e0bc6..75d6c06a2d35 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultFromUnknownResourceGroupFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVaultFromUnknownResourceGroupFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/onesdk454/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wc2h0ZXN0dmF1bHQxMDE4P2FwaS12ZXJzaW9uPTIwMTQtMTItMTktUFJFVklFVw==", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/onesdk6800/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk454' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk6800' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "101" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "gateway" ], "x-ms-request-id": [ - "809974e1-65d1-4776-8d88-592e5b3a1a39" + "41d46e40-36f3-494e-bef7-8ea028095392" ], "x-ms-correlation-request-id": [ - "809974e1-65d1-4776-8d88-592e5b3a1a39" + "41d46e40-36f3-494e-bef7-8ea028095392" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195516Z:809974e1-65d1-4776-8d88-592e5b3a1a39" + "WESTUS:20150515T233912Z:41d46e40-36f3-494e-bef7-8ea028095392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:55:16 GMT" + "Fri, 15 May 2015 23:39:12 GMT" ] }, "StatusCode": 404 @@ -51,16 +51,16 @@ ], "Names": { "Test-GetVaultFromUnknownResourceGroupFails": [ - "onesdk454" + "onesdk6800" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListAllVaultsInSubscription.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListAllVaultsInSubscription.json index 88e36ab092c3..18cffca446cc 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListAllVaultsInSubscription.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListAllVaultsInSubscription.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4506" + "504" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14973" ], "x-ms-request-id": [ - "4247335b-ba2c-48ee-bb76-a4fd52c2936d" + "fccfcf9d-f079-40a4-857d-fcaa3c28a111" ], "x-ms-correlation-request-id": [ - "4247335b-ba2c-48ee-bb76-a4fd52c2936d" + "fccfcf9d-f079-40a4-857d-fcaa3c28a111" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T194934Z:4247335b-ba2c-48ee-bb76-a4fd52c2936d" + "WESTUS:20150515T233518Z:fccfcf9d-f079-40a4-857d-fcaa3c28a111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:33 GMT" + "Fri, 15 May 2015 23:35:18 GMT" ] }, "StatusCode": 200 @@ -51,12 +51,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByResourceGroup.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByResourceGroup.json index 5eb3091ce632..1f87233e65c2 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByResourceGroup.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByResourceGroup.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "734" + "253" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "14998" ], "x-ms-request-id": [ - "5b9d0c96-718e-45f9-af77-1143e728cd3e" + "ac2831c2-89d8-4e56-8128-88ccec6b1b4d" ], "x-ms-correlation-request-id": [ - "5b9d0c96-718e-45f9-af77-1143e728cd3e" + "ac2831c2-89d8-4e56-8128-88ccec6b1b4d" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195454Z:5b9d0c96-718e-45f9-af77-1143e728cd3e" + "WESTUS:20150515T233427Z:ac2831c2-89d8-4e56-8128-88ccec6b1b4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:54:53 GMT" + "Fri, 15 May 2015 23:34:27 GMT" ] }, "StatusCode": 200 @@ -51,12 +51,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByTag.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByTag.json index 79ef7c8b8282..60ce9f550b9a 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByTag.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByTag.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=tagname%20eq%20'testtag'%20and%20tagvalue%20eq%20'testvalue'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXRhZ25hbWUlMjBlcSUyMCd0ZXN0dGFnJyUyMGFuZCUyMHRhZ3ZhbHVlJTIwZXElMjAndGVzdHZhbHVlJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=tagname%20eq%20'testtag'%20and%20tagvalue%20eq%20'testvalue'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXRhZ25hbWUlMjBlcSUyMCd0ZXN0dGFnJyUyMGFuZCUyMHRhZ3ZhbHVlJTIwZXElMjAndGVzdHZhbHVlJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "231" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14964" ], "x-ms-request-id": [ - "1677afaa-41ab-4869-97da-95d618d8a56f" + "890b99c8-053b-4c46-94ac-ebb96decc208" ], "x-ms-correlation-request-id": [ - "1677afaa-41ab-4869-97da-95d618d8a56f" + "890b99c8-053b-4c46-94ac-ebb96decc208" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195640Z:1677afaa-41ab-4869-97da-95d618d8a56f" + "WESTUS:20150515T233924Z:890b99c8-053b-4c46-94ac-ebb96decc208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:56:39 GMT" + "Fri, 15 May 2015 23:39:24 GMT" ] }, "StatusCode": 200 @@ -51,12 +51,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByUnknownResourceGroupFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByUnknownResourceGroupFails.json index aa0f8b6869bd..acd1707981e4 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByUnknownResourceGroupFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaultsByUnknownResourceGroupFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/onesdk5441/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL29uZXNkazU0NDEvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/onesdk8244/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL29uZXNkazgyNDQvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk5441' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'onesdk8244' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -31,13 +31,13 @@ "14992" ], "x-ms-request-id": [ - "eead9132-cd42-4ae8-bcf5-7e9885d592e6" + "ecaa5e13-9f14-413a-a5da-5b6be7f5e2d1" ], "x-ms-correlation-request-id": [ - "eead9132-cd42-4ae8-bcf5-7e9885d592e6" + "ecaa5e13-9f14-413a-a5da-5b6be7f5e2d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195219Z:eead9132-cd42-4ae8-bcf5-7e9885d592e6" + "WESTUS:20150515T233731Z:ecaa5e13-9f14-413a-a5da-5b6be7f5e2d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:52:19 GMT" + "Fri, 15 May 2015 23:37:31 GMT" ] }, "StatusCode": 404 @@ -54,16 +54,16 @@ ], "Names": { "Test-ListVaultsByUnknownResourceGroupFails": [ - "onesdk5441" + "onesdk8244" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicy.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicy.json index 5eb5a8c2e755..0f66162f84e4 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicy.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicy.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14979" ], "x-ms-request-id": [ - "d146dae9-e7ba-4cf4-b97d-d6a108a1713e" + "79b36614-a618-4439-9bfe-1dc22a19733d" ], "x-ms-correlation-request-id": [ - "d146dae9-e7ba-4cf4-b97d-d6a108a1713e" + "79b36614-a618-4439-9bfe-1dc22a19733d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195015Z:d146dae9-e7ba-4cf4-b97d-d6a108a1713e" + "WESTUS:20150515T233446Z:79b36614-a618-4439-9bfe-1dc22a19733d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:14 GMT" + "Fri, 15 May 2015 23:34:45 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -58,8 +58,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "448" @@ -85,22 +85,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14978" ], "x-ms-request-id": [ - "336ad836-bfd2-4987-95c0-152e994192f9" + "45828dde-4228-4b1e-9260-badb645cebb6" ], "x-ms-correlation-request-id": [ - "336ad836-bfd2-4987-95c0-152e994192f9" + "45828dde-4228-4b1e-9260-badb645cebb6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195017Z:336ad836-bfd2-4987-95c0-152e994192f9" + "WESTUS:20150515T233449Z:45828dde-4228-4b1e-9260-badb645cebb6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:17 GMT" + "Fri, 15 May 2015 23:34:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -115,8 +115,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "740" @@ -142,22 +142,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14977" ], "x-ms-request-id": [ - "df5bec19-408a-42b8-a9c8-70c3fb331d97" + "1f8dee14-c391-4b50-8b9c-086aa88ee810" ], "x-ms-correlation-request-id": [ - "df5bec19-408a-42b8-a9c8-70c3fb331d97" + "1f8dee14-c391-4b50-8b9c-086aa88ee810" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195018Z:df5bec19-408a-42b8-a9c8-70c3fb331d97" + "WESTUS:20150515T233449Z:1f8dee14-c391-4b50-8b9c-086aa88ee810" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:18 GMT" + "Fri, 15 May 2015 23:34:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -172,8 +172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,7 +181,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "728" @@ -199,22 +199,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14976" ], "x-ms-request-id": [ - "5fe61ff5-80e3-49ef-a4d7-58f6331b59c2" + "da82b0ca-5eda-48ce-a946-87fbebe97f38" ], "x-ms-correlation-request-id": [ - "5fe61ff5-80e3-49ef-a4d7-58f6331b59c2" + "da82b0ca-5eda-48ce-a946-87fbebe97f38" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195019Z:5fe61ff5-80e3-49ef-a4d7-58f6331b59c2" + "WESTUS:20150515T233450Z:da82b0ca-5eda-48ce-a946-87fbebe97f38" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:18 GMT" + "Fri, 15 May 2015 23:34:49 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -229,8 +229,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -238,7 +238,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "706" @@ -256,22 +256,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14975" ], "x-ms-request-id": [ - "8d0d395c-a590-4eb3-990a-e0874902547b" + "9d8dc30a-986e-4ff0-bdc0-fc1beefc0e1c" ], "x-ms-correlation-request-id": [ - "8d0d395c-a590-4eb3-990a-e0874902547b" + "9d8dc30a-986e-4ff0-bdc0-fc1beefc0e1c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195020Z:8d0d395c-a590-4eb3-990a-e0874902547b" + "WESTUS:20150515T233451Z:9d8dc30a-986e-4ff0-bdc0-fc1beefc0e1c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:20 GMT" + "Fri, 15 May 2015 23:34:51 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -286,8 +286,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -295,7 +295,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "583" @@ -313,22 +313,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14974" ], "x-ms-request-id": [ - "f3948bf7-534a-428d-95d2-c760a6d509ed" + "ad115a3d-3b40-4265-b258-98537a23da26" ], "x-ms-correlation-request-id": [ - "f3948bf7-534a-428d-95d2-c760a6d509ed" + "ad115a3d-3b40-4265-b258-98537a23da26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195021Z:f3948bf7-534a-428d-95d2-c760a6d509ed" + "WESTUS:20150515T233452Z:ad115a3d-3b40-4265-b258-98537a23da26" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:21 GMT" + "Fri, 15 May 2015 23:34:52 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -343,8 +343,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -352,10 +352,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -367,13 +367,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "CdWf+KQ8rNUY6Cs/1EB1P+DV8rlzDKmNZ4X8wEwAsRw=" + "9Bp1nQU/JhaSO3lV8bBy7mMK4p3NOMvZqoAcpeeOoc8=" ], "request-id": [ - "75ef2747-fb17-4f29-a753-57680a91e0da" + "ceac631c-fb7c-4602-86b9-214b8331e082" ], "client-request-id": [ - "7c9251fa-3992-4451-a00e-864c8883992e" + "10755c5a-7d4d-4070-a6ca-2cc59aa462f2" ], "x-ms-gateway-rewrite": [ "false" @@ -382,7 +382,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "RBIPHKUIadH2rSPG3rOWxbWerNX3zlOCPo_b25psOPg6YyKc_k59Ano43oZpJgVz8tQOfUyUQcsYPOPuiG98quvn_sB7NsraJC8Fn6Gli19W4HosmzIzvTK7KiMfrfl5.jfeAztnd-J7cbi0CST3aRmvtRbOZn8fJP8SOwQPYKes" + "YxCxRxwl1w0ZAtnqpNMBx7qOz1YY8uIfsKTs-ePwDkBvlweTJ6NwIsuhDt_pPOmS1EYalW1ZaO4yISkosA9Z5TYTaonKVhi7TGnkR76708IwBTvf9Qpu_PJGZAEljXZl.SHvF8TmqpnLr4WtM0-FYIse8_OTjC-i1DXYAhLXP4UI" ], "X-Content-Type-Options": [ "nosniff" @@ -410,14 +410,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:15 GMT" + "Fri, 15 May 2015 23:34:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -425,10 +425,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -440,13 +440,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iuPmgCujsBOHP5ZHyhzOWZQ0FRP7jUfzbegvNsa5PFc=" + "CsyM59IyEG8NtoG93Zs1iaZk8m7nLCS/ZIsRW3/qOUQ=" ], "request-id": [ - "f7bbc316-c593-4ce5-b739-529de10f059c" + "ff5e0334-bb58-4ec3-a6ca-a5e0ddf530ae" ], "client-request-id": [ - "948597aa-4656-426d-a5eb-07d68c8cdf75" + "a348a0e6-b7cd-4453-a7a6-827e201e3bd9" ], "x-ms-gateway-rewrite": [ "false" @@ -455,7 +455,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "jKiQkMOgAQLUz58sjvXhDEJPFchEC6i1Ms5q7CdiJBneyAb2KdgtIqr-TrxI73ZD8tNdJGPWzcOWR6KAnWgCpyqNFlYJI6LHtnFcDOIu0pbEn00KpKiCEdApJ0CbMeCV.rMcDGbkhuYoqRzjzvCCsHYY5T2nD21g1uMSUbnIiQkA" + "MvTLP9oeByosmaxqHsHP5oi25fuprPMsE3TgGwuzv8jIjfWJ-x7EnxZSBb-z2_x7Ohj7PkybxrXTF47UHhtc9m5l1f-C62MWjX7-DH8oNN9KP7WbXFYdMRcYRi1fT2hQ.QOpJPboNHR21m1KFiVtkHDYaJbqFbOANQQB6EusK--E" ], "X-Content-Type-Options": [ "nosniff" @@ -483,14 +483,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:17 GMT" + "Fri, 15 May 2015 23:34:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,10 +498,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -513,13 +513,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "11iwt901UN/FNchIH/Wpv/gMabTDDEDeFFgUOM8Kv5w=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "969e29f9-9d3b-404a-b7e4-a29233d8728d" + "b53023f7-5d19-42ef-916e-acd6e052a184" ], "client-request-id": [ - "2721b29b-4c3e-4065-869d-67da5d767664" + "681a8ca0-cbdc-4b84-9a2f-8402f659e571" ], "x-ms-gateway-rewrite": [ "false" @@ -528,7 +528,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "GZLGFWyycLIfpbbvibWGyT7DmJxd75D4dsPApeZtdB6h6AhIhgJY5fO2mKIo5cgmfmGOB1nt8gzFamNgfeUqQrDm9FmDMVM8h1o0R321eLAdfFlT8Fx_TdFfDgrVceEq.zA8icWVDnuBgN2HxWLKRsw6sctfIbCRJXbAOTUhe-wE" + "7QZCK7zfCQiGTH5m0d5rA-ADw5_hza13OYaFFSPYtCJTqc2qCrsUXE9jIHhTOUizuR7cirvkVVSOnKSN7-2_Sesr2WitA2aChDYShBbfu_FgjDtrtBSblplY3M-9z8Pc.aS7FhpycpN528yMwpySQrvOYwyRi1t8viossqwPtyTY" ], "X-Content-Type-Options": [ "nosniff" @@ -556,14 +556,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:20 GMT" + "Fri, 15 May 2015 23:34:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -571,10 +571,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -586,13 +586,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "11iwt901UN/FNchIH/Wpv/gMabTDDEDeFFgUOM8Kv5w=" + "CsyM59IyEG8NtoG93Zs1iaZk8m7nLCS/ZIsRW3/qOUQ=" ], "request-id": [ - "8caff95c-4e5c-4f90-80ab-081dcf21796c" + "58c0aefe-8a41-4fd0-becf-06e310ce7728" ], "client-request-id": [ - "addeea98-8ae9-4365-b3bf-4d505deeb801" + "de6a4115-14a4-48c2-a9bf-0bc9223ac8a1" ], "x-ms-gateway-rewrite": [ "false" @@ -601,7 +601,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "D67OD9dO-Lt0wKIQ-SLKIIBBFJXEvy6k08uj0Df19Z_VVXckQ522cvRFFUwZpQE0m-KBiNi1swAfydNicij7hq9Cc3booBj1SeS32FYrpP6FN_lfUDFICUeb7FT0fhU4.PESxjQFN-ghfrtdHybaQKprl2uwHl9rtNvw2ljXD27I" + "HEn4fQviIxHMCyerisdyJavOVta8xN7A8_EpXY_6NF4Foex4XuwtX0UZm07m7Oek5BQxKBie-b2v-46LiozAKstlYmruZlpDbn7PcHhuTsBMPoqVO_KGPm7uw4vQ8RPB.Km0_5DaynsvLyD8KmDV69dXeynpoiSWMvjOP-PTlHfE" ], "X-Content-Type-Options": [ "nosniff" @@ -629,16 +629,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:20 GMT" + "Fri, 15 May 2015 23:34:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -650,7 +650,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "448" @@ -668,22 +668,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1190" ], "x-ms-request-id": [ - "18b02634-c31d-4aa4-9d6f-95def75aa09e" + "e0c60099-abcd-44bf-85f3-371d2e1457af" ], "x-ms-correlation-request-id": [ - "18b02634-c31d-4aa4-9d6f-95def75aa09e" + "e0c60099-abcd-44bf-85f3-371d2e1457af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195017Z:18b02634-c31d-4aa4-9d6f-95def75aa09e" + "WESTUS:20150515T233448Z:e0c60099-abcd-44bf-85f3-371d2e1457af" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:17 GMT" + "Fri, 15 May 2015 23:34:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -698,10 +698,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -713,7 +713,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "740" @@ -731,22 +731,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1189" ], "x-ms-request-id": [ - "e2a7d39f-5dc8-4705-bfb9-06a2ccef1aaf" + "b3be8f2d-782f-4533-b5fb-2f6f6378f879" ], "x-ms-correlation-request-id": [ - "e2a7d39f-5dc8-4705-bfb9-06a2ccef1aaf" + "b3be8f2d-782f-4533-b5fb-2f6f6378f879" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195018Z:e2a7d39f-5dc8-4705-bfb9-06a2ccef1aaf" + "WESTUS:20150515T233449Z:b3be8f2d-782f-4533-b5fb-2f6f6378f879" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:17 GMT" + "Fri, 15 May 2015 23:34:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -761,10 +761,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -776,7 +776,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "728" @@ -794,22 +794,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1188" ], "x-ms-request-id": [ - "b052b087-e678-48f4-8c16-35ef488b6f23" + "dcd3cc85-e070-4f6a-a39d-b0b05d823d16" ], "x-ms-correlation-request-id": [ - "b052b087-e678-48f4-8c16-35ef488b6f23" + "dcd3cc85-e070-4f6a-a39d-b0b05d823d16" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195019Z:b052b087-e678-48f4-8c16-35ef488b6f23" + "WESTUS:20150515T233450Z:dcd3cc85-e070-4f6a-a39d-b0b05d823d16" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:18 GMT" + "Fri, 15 May 2015 23:34:49 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -824,10 +824,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -839,7 +839,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "706" @@ -857,22 +857,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1187" ], "x-ms-request-id": [ - "d7d22a97-0a34-44da-8470-5b685bd6e5e7" + "5678de9c-1efb-4a30-a041-ee791be913b9" ], "x-ms-correlation-request-id": [ - "d7d22a97-0a34-44da-8470-5b685bd6e5e7" + "5678de9c-1efb-4a30-a041-ee791be913b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195020Z:d7d22a97-0a34-44da-8470-5b685bd6e5e7" + "WESTUS:20150515T233451Z:5678de9c-1efb-4a30-a041-ee791be913b9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:20 GMT" + "Fri, 15 May 2015 23:34:51 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -887,10 +887,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -902,7 +902,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "583" @@ -920,22 +920,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1186" ], "x-ms-request-id": [ - "784a62b8-b6d4-4ad3-82a7-de245befb6d4" + "95ce6252-b6f4-4f97-aed0-d714ed8319a6" ], "x-ms-correlation-request-id": [ - "784a62b8-b6d4-4ad3-82a7-de245befb6d4" + "95ce6252-b6f4-4f97-aed0-d714ed8319a6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195020Z:784a62b8-b6d4-4ad3-82a7-de245befb6d4" + "WESTUS:20150515T233451Z:95ce6252-b6f4-4f97-aed0-d714ed8319a6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:20 GMT" + "Fri, 15 May 2015 23:34:51 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -950,10 +950,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -965,7 +965,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "448" @@ -983,22 +983,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1185" ], "x-ms-request-id": [ - "560ea053-f85e-4017-85a5-d6b6147b0e91" + "86acb657-4b4b-485f-b0bf-ec731b452f0a" ], "x-ms-correlation-request-id": [ - "560ea053-f85e-4017-85a5-d6b6147b0e91" + "86acb657-4b4b-485f-b0bf-ec731b452f0a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195021Z:560ea053-f85e-4017-85a5-d6b6147b0e91" + "WESTUS:20150515T233452Z:86acb657-4b4b-485f-b0bf-ec731b452f0a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:50:21 GMT" + "Fri, 15 May 2015 23:34:52 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1013,8 +1013,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1022,10 +1022,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1037,13 +1037,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "CdWf+KQ8rNUY6Cs/1EB1P+DV8rlzDKmNZ4X8wEwAsRw=" + "CsyM59IyEG8NtoG93Zs1iaZk8m7nLCS/ZIsRW3/qOUQ=" ], "request-id": [ - "95cd8b62-7453-4e19-b61d-a71cca6d27fd" + "92303243-5b2d-48c5-abc2-81bdb2622749" ], "client-request-id": [ - "fe5db600-fc1d-4650-87bb-396ac4ae3b40" + "afe7431e-8aa4-41ff-bb04-2514fb107c5a" ], "x-ms-gateway-rewrite": [ "false" @@ -1052,7 +1052,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "XAvr7OLlTwQeraP4cBSa8Bv6elDgMuIQirOyOIOGvIEjwspeLHEsvJZXaNmLr-THs_NpXGKjTjo-iL0bm009uvrbmzudXPdRaMQvfCl-GTie9aG4AgJ6BaOKGF4mfy-4.96IWQ8ouJ8veC_eAOYiLQ92RITnQ_J3n5BOUQxRQHNs" + "qXab7jbNbNPTdrLnb7jDUD7Z3tvPfX4We7bzO2m9wWmwGwxX_N7zV63QoLETOpLR2U_2BT4MOAKYkDQvobAbySX7vYFPv5PWjU603zczFZAmCPCvLUV1vi8cawjB8wz8.WU8VtzmHOJjUZMuwLzEsnMRF-l6s-8cjgKV0RqXbWqc" ], "X-Content-Type-Options": [ "nosniff" @@ -1080,14 +1080,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:18 GMT" + "Fri, 15 May 2015 23:34:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1095,10 +1095,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1110,13 +1110,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "CdWf+KQ8rNUY6Cs/1EB1P+DV8rlzDKmNZ4X8wEwAsRw=" + "CsyM59IyEG8NtoG93Zs1iaZk8m7nLCS/ZIsRW3/qOUQ=" ], "request-id": [ - "d97e3ce5-1f89-41a7-a999-19875fe970b3" + "f88d7036-a72d-4ad5-b015-911b19c2d16e" ], "client-request-id": [ - "e078e51f-58c2-498d-b7b6-0728cfd1615c" + "001c4645-9a0b-4233-9c0a-71919b3f0dc9" ], "x-ms-gateway-rewrite": [ "false" @@ -1125,7 +1125,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "7u2T2LDBA4gNzhqQvEYit2ZFDjpzzIsrDvZypMRG-fhdtOjwtUnpfJYDFTAerVQwlsPuzl4kSoFw-y79_tPcli6aa2Qr3TRco9qjetwmtLsZqLI39OeDkq6BGFW9XyqP.hwLlZ2hpEL6jvPKnVxReuidTevRQVRMCbUSOXfdLW2w" + "YLoefDN64ObPvAzgCGcfV7cce8-26ueoLtBO0tT71Ny1HP2N3ACLzBTPhzux_8dYYjQUJa_bG8PFD5JWvD89jZpi_wOJLU0ccbJIvc58mCp744LzkoxNO5gvsd4FTEbn.x1PhXjzFlOL9zOoFMeU1Bo5TCuWUKFsZciPjuYM61UI" ], "X-Content-Type-Options": [ "nosniff" @@ -1153,14 +1153,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:18 GMT" + "Fri, 15 May 2015 23:34:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1168,10 +1168,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1183,13 +1183,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iuPmgCujsBOHP5ZHyhzOWZQ0FRP7jUfzbegvNsa5PFc=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "8f51c9a6-3a58-4451-bb76-350a8b278abb" + "3361c103-6583-404f-a6ee-53d834f218d8" ], "client-request-id": [ - "82487986-a1c5-4801-a573-89b8e468034b" + "ca34b4ec-6211-438e-b254-b72e06edc63b" ], "x-ms-gateway-rewrite": [ "false" @@ -1198,7 +1198,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "_hANq_xNEkAS25XW9mULgCQmVuSvqV3sdMV7SBXblDBDw_OHbxCMEC5o5g5fH94PcJ86bHURaVUmbQc-dNXtdb4n96AY1v224kwcwRtFr_FLV51QGl9by2bRcc7yz8do.kcd-u5NU2WDO878dqb0JaAwDlZYkH6D-NmfWDBhLemE" + "jsH4TKDcJBsvvfMGg6omS-2XELMKj9-bGZOigvxhARwhnZszutD2TKugPFT8nL-yZXuYsowSHzZ-0JrP-GcuKj8Pos1WP7A8NUu55KogAoKIg599XhesoozIdqboQyoi.V4I5uRmCgjlc85WxoWoLeSDZb_TPjNdzfzhxk-b9ZuE" ], "X-Content-Type-Options": [ "nosniff" @@ -1226,14 +1226,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:18 GMT" + "Fri, 15 May 2015 23:34:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1241,10 +1241,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1256,13 +1256,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "OwiQwVxuZXWAznx4rYbzGrX1SXicMuwxX8McepXFTKk=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "2c08dd18-b98e-4d4b-a7c7-bb0fe5f19380" + "ca37f6bd-19ab-48f3-9c4a-445d87f9fa6f" ], "client-request-id": [ - "0e56952f-2362-4d3c-bf6b-b2980758dcce" + "8b757ae6-6ed1-4682-91fe-80819b7726a9" ], "x-ms-gateway-rewrite": [ "false" @@ -1271,7 +1271,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "pkgkyat8EmRfEvI-yR6sQIWF0pRVYQgRKUTCS6tXsHcznflsUOCHPRFK6pfV33mejXdD2EX2ss1T2JwFbxhAjeC9BAw4_InFnOjkyHCDN4H1dxw25lNhwDdeI4DCtI3z.-AYI8kF3rwZ35U75EMMpHS2gS-VPALegi4ToDYbB9UQ" + "KvkMboAHAfaS1INpqwm9ANgppg7wAPccLPLaoAWjqmbPL53qHpCAjOuqXvzTpnzBvWzxhHgxLMkS_eMJe6abfEIkVGLZ2z3jjcSECCTXPeDuLyaqS_MREIVZJ75MnCy_.Q8wCuXoEl8URM12E1AEWVJ8CfcQc2dE5WGkwmLpc9MI" ], "X-Content-Type-Options": [ "nosniff" @@ -1299,14 +1299,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:19 GMT" + "Fri, 15 May 2015 23:34:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1314,10 +1314,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1329,13 +1329,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "75ShSHQOKYDfqrCwgjP19v5Gc0xT9jfEGVxJuWp38PQ=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "e9740582-2b58-4738-b5a1-a692fa214149" + "4265d407-9c0a-4f8f-b06b-1798d4af1a09" ], "client-request-id": [ - "46433bf4-a73e-4242-af88-bf2c8b8b95c2" + "3cd07914-a5c6-4f4d-8134-dd9627994006" ], "x-ms-gateway-rewrite": [ "false" @@ -1344,7 +1344,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "19HRmtrTaOAoHf8uBmckIbRmHqA0ogfOEi9tUk1KzNYjd-ZsqDXA70paw7vXTcPXAYLw0-BeMysqp3CerWqOvKa4gQVuPU98dM4hqBHUqqaxkVvO4JgjRzX5IPr31rie.wzTSsCCc9eL7DTWr-k-Bu14LQ_wHSbRPfVdc2sb65TM" + "sCrLRtDfq-jWHPiXZEozsBo4cSX21aPTKvByVg4Xg9-gYQy3NhtVIJsKBUNfC9VrDGwRdR2C_pVn-MZHUpyFX0DNi5HTL3tOlz8ng1Hc7P4HOhwQZP9Nj9wLXkze7YHR.m4SCjuJZwa3jHjPHXyVcRg3PHQeNGAegX8zh66-Lklg" ], "X-Content-Type-Options": [ "nosniff" @@ -1372,14 +1372,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:19 GMT" + "Fri, 15 May 2015 23:34:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1387,10 +1387,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1402,13 +1402,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iuPmgCujsBOHP5ZHyhzOWZQ0FRP7jUfzbegvNsa5PFc=" + "psiMyCgGNont5UUlRDFb8UPKF3o96E4QwvclgKDSjsQ=" ], "request-id": [ - "7e2f2c19-05b0-4594-bd35-2987507c3664" + "5d8d02d2-6f09-4c6a-84f0-2a0c1dc43988" ], "client-request-id": [ - "d182f541-e99c-4cc1-a6b5-4ef1f8dfcc22" + "788e0163-2534-4f17-9dd1-e4a3dafaadf5" ], "x-ms-gateway-rewrite": [ "false" @@ -1417,7 +1417,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "jf6FCUnPmvyisgSoNNvgUVixZM1HNBTNfLxRlHOlxN0BL1J_CuhIPFFe6pU6t1uFtrC2gu249CjeAhBSQQOTtshwA1lJEZtUFJnTu0VncHUfB9WQyaP_LncitWBqrjpO.jjYscrXbJREyBicAsct_Zyy_xEhpXZmV6IeEC2cWrVk" + "Afb8bXwC9RxZdIKNl4UF9lS6KOWGhxFFYjyZyslTUV4VEFkJMZ558IS4c2rHPHrOmiC6WNaADsEBYjI4gp5LDhqRp24eCNdwAsUbzhbEQs4hbz_ZQ3J67fFKkK2weG9K.YabSBHnOa8MyhiE-A8EIBcANV_2cETNa6OKrFhrmpdI" ], "X-Content-Type-Options": [ "nosniff" @@ -1445,14 +1445,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:19 GMT" + "Fri, 15 May 2015 23:34:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,10 +1460,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1475,13 +1475,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "11iwt901UN/FNchIH/Wpv/gMabTDDEDeFFgUOM8Kv5w=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "463a09da-2f16-425c-b6d0-69881f731268" + "f8603ab9-5a9d-401c-b918-99a14cca44e7" ], "client-request-id": [ - "c90b65bf-9bb8-4da9-85cb-2f2bfe26dc2b" + "8eccf2b8-48ed-4eae-82ec-3fc34c7ef842" ], "x-ms-gateway-rewrite": [ "false" @@ -1490,7 +1490,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "HwEs3Jir2y7ZRsLmiURW034ZizUFmxi-sE_ydPq5V2FTk1OL8Wh97Qx1iLis6QwfYioJZg11k0OIpGGyZLuoEvNhB3GNG_hxwKd9Ebl2_tcAm-9r5TpOxno5H-vc7Z9u.O1IhZoyDmpsPbBffB_einKY2bOdSIqtdu4vLMwYs3Cw" + "T1TpGEUkPd9FMYPSvPe8wWzuWAnlhUrK0UExhXdeUkis75gqRkfWaJBruYAod_BccbAsQjTNNVvGDtBmkK2GwKgcZBDqYOg7Mso4raoMW7NX-spPQLScqxCXdwr76f3q.EwSGb6fhyRFz5261--SfpZDFseEu64sbMVeYFj-te98" ], "X-Content-Type-Options": [ "nosniff" @@ -1518,7 +1518,7 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:50:20 GMT" + "Fri, 15 May 2015 23:34:51 GMT" ] }, "StatusCode": 200 @@ -1526,12 +1526,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "User": "divyag@ntdev.microsoft.com", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyEnabledForDeployment.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyEnabledForDeployment.json index c0f7a20b6e8c..9dcf335e070e 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyEnabledForDeployment.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyEnabledForDeployment.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14987" ], "x-ms-request-id": [ - "70e3bbfc-6453-4fc2-ae2a-ddf8c2245b41" + "87a9a731-c8a7-48c2-bb45-ea37dc4bb67e" ], "x-ms-correlation-request-id": [ - "70e3bbfc-6453-4fc2-ae2a-ddf8c2245b41" + "87a9a731-c8a7-48c2-bb45-ea37dc4bb67e" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194902Z:70e3bbfc-6453-4fc2-ae2a-ddf8c2245b41" + "WESTUS:20150515T234112Z:87a9a731-c8a7-48c2-bb45-ea37dc4bb67e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:01 GMT" + "Fri, 15 May 2015 23:41:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -58,8 +58,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -85,22 +85,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14986" ], "x-ms-request-id": [ - "f6bf1384-dcf3-41f5-a99b-12c1b2b28be0" + "29d839c0-9709-4eb7-b640-6570335a8127" ], "x-ms-correlation-request-id": [ - "f6bf1384-dcf3-41f5-a99b-12c1b2b28be0" + "29d839c0-9709-4eb7-b640-6570335a8127" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194903Z:f6bf1384-dcf3-41f5-a99b-12c1b2b28be0" + "WESTUS:20150515T234112Z:29d839c0-9709-4eb7-b640-6570335a8127" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:02 GMT" + "Fri, 15 May 2015 23:41:12 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -115,8 +115,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -142,22 +142,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14985" ], "x-ms-request-id": [ - "b8809b88-153a-417b-9a9d-959ff7d7666c" + "196d058e-973e-4c8c-b935-6eed7057c653" ], "x-ms-correlation-request-id": [ - "b8809b88-153a-417b-9a9d-959ff7d7666c" + "196d058e-973e-4c8c-b935-6eed7057c653" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194905Z:b8809b88-153a-417b-9a9d-959ff7d7666c" + "WESTUS:20150515T234115Z:196d058e-973e-4c8c-b935-6eed7057c653" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:05 GMT" + "Fri, 15 May 2015 23:41:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -172,8 +172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,7 +181,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "448" @@ -199,22 +199,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14984" ], "x-ms-request-id": [ - "50fe144d-0a40-4a4a-a429-211a38a4eb44" + "efa12c46-728d-40c5-84a2-5e6a65824747" ], "x-ms-correlation-request-id": [ - "50fe144d-0a40-4a4a-a429-211a38a4eb44" + "efa12c46-728d-40c5-84a2-5e6a65824747" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194906Z:50fe144d-0a40-4a4a-a429-211a38a4eb44" + "WESTUS:20150515T234115Z:efa12c46-728d-40c5-84a2-5e6a65824747" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:06 GMT" + "Fri, 15 May 2015 23:41:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -229,8 +229,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -238,7 +238,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "739" @@ -256,22 +256,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14983" ], "x-ms-request-id": [ - "5d87535e-d448-47c4-898c-3f8293f7ce23" + "cbddd2d8-ab98-49db-93e9-60a9ad4916b7" ], "x-ms-correlation-request-id": [ - "5d87535e-d448-47c4-898c-3f8293f7ce23" + "cbddd2d8-ab98-49db-93e9-60a9ad4916b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194907Z:5d87535e-d448-47c4-898c-3f8293f7ce23" + "WESTUS:20150515T234116Z:cbddd2d8-ab98-49db-93e9-60a9ad4916b7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:07 GMT" + "Fri, 15 May 2015 23:41:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -286,10 +286,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -301,7 +301,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -319,22 +319,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-request-id": [ - "760c2f36-249e-4da7-ba47-6097a0b6f5cc" + "76d867f5-172d-4a26-9d9f-b19e0384b7f4" ], "x-ms-correlation-request-id": [ - "760c2f36-249e-4da7-ba47-6097a0b6f5cc" + "76d867f5-172d-4a26-9d9f-b19e0384b7f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194905Z:760c2f36-249e-4da7-ba47-6097a0b6f5cc" + "WESTUS:20150515T234114Z:76d867f5-172d-4a26-9d9f-b19e0384b7f4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:05 GMT" + "Fri, 15 May 2015 23:41:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -349,10 +349,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -364,7 +364,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "448" @@ -382,22 +382,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-request-id": [ - "6e3e2412-77d5-4f63-8c3e-7955426adbd6" + "faea8e7e-cf04-465c-9642-8ee86d5bc7f1" ], "x-ms-correlation-request-id": [ - "6e3e2412-77d5-4f63-8c3e-7955426adbd6" + "faea8e7e-cf04-465c-9642-8ee86d5bc7f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194906Z:6e3e2412-77d5-4f63-8c3e-7955426adbd6" + "WESTUS:20150515T234115Z:faea8e7e-cf04-465c-9642-8ee86d5bc7f1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:06 GMT" + "Fri, 15 May 2015 23:41:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -412,10 +412,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -427,7 +427,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "739" @@ -445,22 +445,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-request-id": [ - "84cd29f2-fb54-4dc5-89cd-9e5d3f2e2e8c" + "25fa1b88-5a85-4759-9f28-13518af08b91" ], "x-ms-correlation-request-id": [ - "84cd29f2-fb54-4dc5-89cd-9e5d3f2e2e8c" + "25fa1b88-5a85-4759-9f28-13518af08b91" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194906Z:84cd29f2-fb54-4dc5-89cd-9e5d3f2e2e8c" + "WESTUS:20150515T234116Z:25fa1b88-5a85-4759-9f28-13518af08b91" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:06 GMT" + "Fri, 15 May 2015 23:41:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -475,10 +475,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -490,7 +490,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "448" @@ -508,22 +508,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1187" ], "x-ms-request-id": [ - "115e1dbd-4e26-42e5-8a7d-49e25d8dd969" + "fd9178a3-ae0b-4bf7-a24d-67bb1b5e9388" ], "x-ms-correlation-request-id": [ - "115e1dbd-4e26-42e5-8a7d-49e25d8dd969" + "fd9178a3-ae0b-4bf7-a24d-67bb1b5e9388" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194907Z:115e1dbd-4e26-42e5-8a7d-49e25d8dd969" + "WESTUS:20150515T234116Z:fd9178a3-ae0b-4bf7-a24d-67bb1b5e9388" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:49:07 GMT" + "Fri, 15 May 2015 23:41:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -538,8 +538,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -547,10 +547,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -562,13 +562,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" + "b8JwnBmW0N2StQrw12MyEs8cqDo2tPAmfu0ULloQJ7M=" ], "request-id": [ - "d3fbb637-c65e-4283-8e10-8017e411479d" + "f0c9a1b7-819f-49e6-83a8-0ee003ca1429" ], "client-request-id": [ - "36518778-0b55-45fa-aca4-3c77671064f9" + "f11e8859-cddb-4bd5-a371-f58a006fc3cd" ], "x-ms-gateway-rewrite": [ "false" @@ -577,7 +577,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "jY3Yfm_54Plur_udmAiljnHN4APcEwHV-tOQMYtfaDUqn5tiNpss8rXY4eRDlJVlilKbrV3V0GKilu4kW5NQx1LXt16aTqbjcV_CMUYGCC6bzbTRoT77tVoXndF842G7.YZCwNhDr16-qocM8KJU2Ap-VpAMUyw-HmG1Dz5m1P2w" + "Pgt3TsOmGJulJSTsoNxW8u6L88phVMl8aEWae7haJM3Tf8wObiRg8bilvBvOnqRm_Xzzl5XSSXTjpAVChoG6-703SaE47ZLgqmQ4lPKTQWPZprbPgc2U_nDFRurYBOd5Inz4RQcaK1BcpVXu5fRZig.YE7sc-7jLWOi80geawSZmWyCFyiTH_x9BipoGdHpzKk" ], "X-Content-Type-Options": [ "nosniff" @@ -605,14 +605,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:49:06 GMT" + "Fri, 15 May 2015 23:41:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -620,10 +620,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -635,13 +635,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + "i4Cjy0Rm3dU5EwgdJFsHVUFiI7cBL4KFGb+3zXKTCts=" ], "request-id": [ - "d88018c0-25e1-4056-9958-b51cff0741b3" + "475fc566-da3a-47ef-9cd3-74733b503139" ], "client-request-id": [ - "50d1ac72-2c56-48ea-9ce7-5d596b1d4149" + "b39de4d0-087c-473c-95e7-6d9a2df565db" ], "x-ms-gateway-rewrite": [ "false" @@ -650,7 +650,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "7b2burs1D25J6t0v0a21Qh2hPP9wtEeIPDv_TO-7iYyBabdn15CmbNIINUqTLlpT5zjcEi7SGo_pw2oniNc8dn9cTkxtAnUUBoeNg-AtR67gySx-w-bMOXrw5Zcvz260.0Ip0gaFJNJdsq4OBonWtHLa_S84aos4aF9TYmnADmtE" + "x-apRAOky9Jg1a91Xx3cGJg1xyoXK8GyTXCf-eg5gC4xLcQMhDAVipsmdx0IAEVz4x7Dpt6q8u0uwfXkPFCs2Rwb6P-tQo-WuizJnLMhX69WgSZZcLyQPUR5oLOCPaqW.vu-Xzce6IGZrupCrKBR868qHuRccNOgVHFuYaaGDGpU" ], "X-Content-Type-Options": [ "nosniff" @@ -678,14 +678,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:49:07 GMT" + "Fri, 15 May 2015 23:41:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -693,10 +693,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -708,13 +708,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" + "VE96ymV+N7+qIsCyCRMEXtWtFdJRAMYbA69ATN4L+b0=" ], "request-id": [ - "c810388b-381a-43a8-b7a1-0c4276de8cf1" + "4da3d3c3-11ca-4915-bb8a-09f053519a0d" ], "client-request-id": [ - "abde6f46-3712-4c16-a09f-0ef0fa2f17e4" + "f1d66aa1-be37-49b4-9e6f-89f8c750b0cf" ], "x-ms-gateway-rewrite": [ "false" @@ -723,7 +723,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "6W-2qJ2ned5cbcL57CK6uDiAGiBRh4n96pM5nmjFDoVV5ImXyyEJwhdocdNvq6iT-VgX0ajedp7Imnv8TboJmAZXUhLIWKgGVdiTwvxwBM-OblMC926DoPiHiN6GRP7z.mR4HVmhjelLhQClEAEtygk892abWN4LhJyWf0-QxdY0" + "NzDkAw1ApqUx-IRfIONiUtyxCKs8Znm49ihE3BDWxU-MAvmz1vtPQOAmLxzEmLyIYrL6pTOoH1Ga9y9AsnZEp7HXYMNKZ_AdY-pmTJGKFl3ZuLjlFJN4wOTutoAR5HW0FXSpYose_lLh9yxROhpc-Q.oj3Fx3-Sp3vyqBUSjzDOCBy5LYvXAUVj0j5oiJT4EC8" ], "X-Content-Type-Options": [ "nosniff" @@ -751,7 +751,7 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:49:07 GMT" + "Fri, 15 May 2015 23:41:15 GMT" ] }, "StatusCode": 200 @@ -759,12 +759,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "User": "divyag@ntdev.microsoft.com", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json index f95bc670a08f..966f8d18c3fd 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestModifyAccessPolicyNegativeCases.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14966" ], "x-ms-request-id": [ - "0b1f283e-d64c-4799-8b7e-6d4af895ceb0" + "161b1247-c469-44e3-804c-c21d794df6d7" ], "x-ms-correlation-request-id": [ - "0b1f283e-d64c-4799-8b7e-6d4af895ceb0" + "161b1247-c469-44e3-804c-c21d794df6d7" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194601Z:0b1f283e-d64c-4799-8b7e-6d4af895ceb0" + "WESTUS:20150515T233841Z:161b1247-c469-44e3-804c-c21d794df6d7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:46:00 GMT" + "Fri, 15 May 2015 23:38:40 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -58,8 +58,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -85,22 +85,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14965" ], "x-ms-request-id": [ - "f6c25182-2282-4895-bb81-dcc74e5a0fa4" + "9cc48402-c2f0-4876-b544-0cce45f2d476" ], "x-ms-correlation-request-id": [ - "f6c25182-2282-4895-bb81-dcc74e5a0fa4" + "9cc48402-c2f0-4876-b544-0cce45f2d476" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194601Z:f6c25182-2282-4895-bb81-dcc74e5a0fa4" + "WESTUS:20150515T233841Z:9cc48402-c2f0-4876-b544-0cce45f2d476" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:46:00 GMT" + "Fri, 15 May 2015 23:38:40 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -115,8 +115,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -124,7 +124,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -142,22 +142,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14964" ], "x-ms-request-id": [ - "6fb75cb3-f5f2-46c2-b464-a28dcf44c1df" + "7f718aa8-b79a-462c-95ef-e1f2dc32f313" ], "x-ms-correlation-request-id": [ - "6fb75cb3-f5f2-46c2-b464-a28dcf44c1df" + "7f718aa8-b79a-462c-95ef-e1f2dc32f313" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194601Z:6fb75cb3-f5f2-46c2-b464-a28dcf44c1df" + "WESTUS:20150515T233842Z:7f718aa8-b79a-462c-95ef-e1f2dc32f313" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:46:01 GMT" + "Fri, 15 May 2015 23:38:41 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -172,8 +172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,7 +181,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -199,22 +199,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14963" ], "x-ms-request-id": [ - "5a49b3c3-e7c3-41b3-ad53-bc6a99004f96" + "099071d3-fc27-44e4-8282-1dd8beb0551f" ], "x-ms-correlation-request-id": [ - "5a49b3c3-e7c3-41b3-ad53-bc6a99004f96" + "099071d3-fc27-44e4-8282-1dd8beb0551f" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194602Z:5a49b3c3-e7c3-41b3-ad53-bc6a99004f96" + "WESTUS:20150515T233842Z:099071d3-fc27-44e4-8282-1dd8beb0551f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:46:01 GMT" + "Fri, 15 May 2015 23:38:41 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -229,8 +229,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -238,10 +238,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -253,13 +253,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "FpbEqwjNE5UgQMRKJCh+5oT77dK8Xy2HF5eIvb2XUK4=" + "HU7qlXRtX8KLODQBO5CdOeWfpuntgqWle5baRvCgDQc=" ], "request-id": [ - "4a747a4b-2cef-4f79-9ea1-f7c0b1d10eda" + "4d6340da-fbd7-410f-8022-c4104b7d6b54" ], "client-request-id": [ - "a744592f-0a1c-4704-8de1-14ce0c6b771a" + "52458327-1c92-44c8-a23a-40777f306a84" ], "x-ms-gateway-rewrite": [ "false" @@ -268,7 +268,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "3Fj9mI0jvN9qWcCW1d1ITEn_GJLCejBkn8_g3ftXJm4r5l5mW4N6lJDklHj3fQIh8rfI62EMYWeWZSJrOZli831l-j1lBwPLu7xPEGERPcfpTD10Ec4Qs2SIAniF2L_Q.t2V8iaNFtply-c1Dca6WACSMzEZuFhbMdUnCaoxgN_M" + "QJ6Fqs7oUJO8syGfXUfbYNjWewCNYv0GTouDjT2dO_NH1lBv44RCdFWk3aKRZKT1iVriKgKBjKu1HBt2NoKi3FUXpxMldDuz2RdUVkAnKAxqmm_RcJpZzxuwyG6ZjZbLe7QiE4FtBLiMFE39CXhX0Q.WWLXqEUQwimhI4T8WEF0nT4D6a55shMstcVJ_hBeSD0" ], "X-Content-Type-Options": [ "nosniff" @@ -296,14 +296,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:46:01 GMT" + "Fri, 15 May 2015 23:38:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -311,10 +311,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -326,13 +326,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "HU7qlXRtX8KLODQBO5CdOeWfpuntgqWle5baRvCgDQc=" ], "request-id": [ - "67c17302-73b0-42ce-956f-4a556a6e0aa7" + "1ebdf1a2-207f-4174-8f31-c8c9b3a4c5ae" ], "client-request-id": [ - "b9ea3f94-55f8-4b6d-8378-67a9acedb25b" + "143f2f10-d2d7-4843-9a48-61ae80b279e8" ], "x-ms-gateway-rewrite": [ "false" @@ -341,7 +341,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "itrR5W9IcwwTH_bMxMJJ4da2cOuwssTa-STD-d7Mb8LVmoeHQXoABTn5V961W1KUwcA6VVjxTROlD3vfJXrbp2e95bD6pVAOU7jZJYNcm4TrL_DVQ6SLBwCUvUxx257e.KPr1Ms-zlMjRrKCyf70pHWMga1C87_Nf6Hj7DycgTfE" + "_ANdSkHCK0mSV5PZmjMNoesdZHLCp2eqO6-dj_q4uHw25w8IIppXY7dJC732R7VeARu0TFGLXhefIIHU7ocT1_SaB-7da50CR4vNgIs2HJrHD-M4f6o0TGpb8kh6X0a3v4Ol-Fm3LfrPkhSiXVCCRg.Hzr3ubG5aqS4cwHhMmMLti_zIvx5QCFl6O0FP8egetE" ], "X-Content-Type-Options": [ "nosniff" @@ -369,14 +369,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:46:01 GMT" + "Fri, 15 May 2015 23:38:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -384,10 +384,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -399,13 +399,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "30icSeY/bVr9Xoytdat1AuqgYDoWTl+qNMdr2ZkR20g=" ], "request-id": [ - "592b2f5e-3831-4f44-ad1e-fed2ed714b5c" + "72213b0f-ec87-4e09-8a50-1fa17245f988" ], "client-request-id": [ - "2e22565f-d920-4948-b7c4-67be0663ed13" + "a0146498-6ce9-48b2-9356-8e6fd34b8f3e" ], "x-ms-gateway-rewrite": [ "false" @@ -414,7 +414,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "RKw5YPFMJHUTPsL3FJbA8vOgwFY2inbwe_3KrQ6aBD8dOcPAjlCnC4tAvFpv7U9V7Hq0geAsP2U5Pqd-ZI3NsKyJ8kVzqhlZ4iR0pPNP5XoVzzUveRVOOlZNqJ87NfV-.T1vKN9JljMxVtgm4Pm8uiOOqCH1B5aaFh2zleOChJRg" + "HwAASLqW4Y23gCbkqYzXH92wG-taxTRttKphOV2fG0jBVEdmXJ0fWKDX-z57p6j-mLVumi5jZfX0wh_lHVC82cef20sdLqOg7OULqYhjvClNsZJo9KYR1jp0otkqahq_Ic8Tc2ir2swoEkyWK2CTCw.onTxWd478UwFSOAKNIrVxLsN2coNJZUqO4Q7r8LyiEA" ], "X-Content-Type-Options": [ "nosniff" @@ -442,14 +442,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:46:02 GMT" + "Fri, 15 May 2015 23:38:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'divyag%40ntdev.microsoft.com')&api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnZGl2eWFnJTQwbnRkZXYubWljcm9zb2Z0LmNvbScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'kvtest%40yuhuizhotmail.onmicrosoft.com')&api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAna3Z0ZXN0JTQweXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20nKSZhcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -457,7 +457,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ "177" @@ -472,13 +472,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "HU7qlXRtX8KLODQBO5CdOeWfpuntgqWle5baRvCgDQc=" ], "request-id": [ - "854e413a-0fb6-4525-b352-9c13bf5ec599" + "35f4249b-be58-4e0e-9153-a1d5861ecc48" ], "client-request-id": [ - "ff08fc42-9d55-4c98-89c4-8ef7c8cdab10" + "70330dcc-9393-42bf-a733-9a056bb44585" ], "x-ms-gateway-rewrite": [ "false" @@ -487,7 +487,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "Y-wOxm-Ifa3q5tPDayEu-VTUWkueNEpk4lI8Gq8M8kZ41tH7n-yW6xdj6H2ZT3CLqgj1_jEbv3uoPU-2QPOOOEUFE_BBadM8px6kxmWdtgk1qSZeTVZ8OhziEHoC6cLU.FMN6K_3mbNS_mI4D6zJIgnJ8-_uhYONtASHGYaBZkHY" + "NboEvf8YwU0P1Glejb9UKblY3XWketOlQeMb-H7zrgQTQG1dpibsBR55JbBEj_JwxJoSLBbZ_Ubjle2DPomhC8l7HbqSWznPKqMQ_rEqo_mlsoLhrO6MjCgxk0WRN_O52L6_hs-POoDwn3BFF3RI-A.-fK2K82JHkUrl-jiPXUPppmI35CzdQNYysHC07-1mSs" ], "X-Content-Type-Options": [ "nosniff" @@ -515,7 +515,7 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:46:02 GMT" + "Fri, 15 May 2015 23:38:41 GMT" ] }, "StatusCode": 200 @@ -523,12 +523,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "User": "divyag@ntdev.microsoft.com", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRecreateVaultFails.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRecreateVaultFails.json index d32114bb8640..df120c181878 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRecreateVaultFails.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRecreateVaultFails.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup2/providers/Microsoft.KeyVault/vaults/dgvault2\",\r\n \"name\": \"dgvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup4/providers/Microsoft.KeyVault/vaults/dgvault4\",\r\n \"name\": \"dgvault4\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgresourcegroup5/providers/Microsoft.KeyVault/vaults/dgvault5\",\r\n \"name\": \"dgvault5\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak1\",\r\n \"name\": \"divyaghyak1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/dgrg1/providers/Microsoft.KeyVault/vaults/divyaghyak100\",\r\n \"name\": \"divyaghyak100\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault1\",\r\n \"name\": \"divyagtestvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/divyagresourcegroup1/providers/Microsoft.KeyVault/vaults/divyagtestvault2\",\r\n \"name\": \"divyagtestvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup15/providers/Microsoft.KeyVault/vaults/DivyagVault15\",\r\n \"name\": \"DivyagVault15\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/DivyagResourceGroup16/providers/Microsoft.KeyVault/vaults/DivyagVault16\",\r\n \"name\": \"DivyagVault16\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/BugBashTestVault1\",\r\n \"name\": \"BugBashTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/KVSampleAppRG/providers/Microsoft.KeyVault/vaults/KVSampleAppTestVault1\",\r\n \"name\": \"KVSampleAppTestVault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest10\",\r\n \"name\": \"phstest10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/phstest9\",\r\n \"name\": \"phstest9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault1\",\r\n \"name\": \"pshvault1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault10\",\r\n \"name\": \"pshvault10\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault2\",\r\n \"name\": \"pshvault2\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"project\": \"tags\",\r\n \"env\": \"prod\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault3\",\r\n \"name\": \"pshvault3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault77\",\r\n \"name\": \"pshvault77\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshrg1/providers/Microsoft.KeyVault/vaults/pshvault9\",\r\n \"name\": \"pshvault9\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk2782\",\r\n \"name\": \"onesdk2782\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/onesdk5202\",\r\n \"name\": \"onesdk5202\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk1172\",\r\n \"name\": \"onesdk1172\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/onesdk568\",\r\n \"name\": \"onesdk568\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4987" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14994" ], "x-ms-request-id": [ - "ca3e4ddf-d479-43f3-85ba-918304aa16d7" + "ae42ad25-b9dc-4521-a429-8e023a6a3843" ], "x-ms-correlation-request-id": [ - "ca3e4ddf-d479-43f3-85ba-918304aa16d7" + "ae42ad25-b9dc-4521-a429-8e023a6a3843" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195427Z:ca3e4ddf-d479-43f3-85ba-918304aa16d7" + "WESTUS:20150515T234016Z:ae42ad25-b9dc-4521-a429-8e023a6a3843" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:54:26 GMT" + "Fri, 15 May 2015 23:40:16 GMT" ] }, "StatusCode": 200 @@ -51,12 +51,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveAccessPolicyWithCompoundIdPolicies.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveAccessPolicyWithCompoundIdPolicies.json index 5174b949859d..14e36abe7218 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveAccessPolicyWithCompoundIdPolicies.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveAccessPolicyWithCompoundIdPolicies.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/yuhuiz@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy95dWh1aXpAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -25,13 +25,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "97a78083-7a05-4eaf-89b7-343cc894a56f" + "4098bdfa-1a55-42a1-b95f-d5a84d5e244f" ], "client-request-id": [ - "08054c6a-4f8d-48e3-a60e-bb8aaa8185d0" + "891f2965-3352-4bb1-9ab0-459871749755" ], "x-ms-gateway-rewrite": [ "false" @@ -40,7 +40,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "9zPrQPSz0ertCfwFWRwU9QaiuVXPSPCrPHoBrFuFiHInpkxQJf5uEgRNcso-0OwNrHNOe_PDiZjE_dN2oaGgyYSm9LpqnIRfS-PieY5AGdNuHkyVVQzhkn-B-0oTYjzF._RBaz2BYuNhLKhm3SlD8l6N-xPjxtuueNly5zuc7iyg" + "BOw7ifw8cNsG89z7S4DCjLwWMHsT4f1t2rw6s4dii9pryBTuIvtigo0HEd5OZOfPm6HzR-JXEaWAvre0xoJJf3a7PYo3Sk2cqJyFAPs0_FPag_o5nX5xE-zVRiHtGjv_3E-X7uDd_yI9pUKe9o_iDw.6hTSgwNCgzJ_JXX-Z3dXpAD2PWZzns4EBXVeGgVMLGs" ], "X-Content-Type-Options": [ "nosniff" @@ -68,14 +68,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:48 GMT" + "Fri, 15 May 2015 23:37:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -83,7 +83,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -101,22 +101,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14972" ], "x-ms-request-id": [ - "7850148b-f6c2-49c9-9fa1-ac702b1fa093" + "8763eb9e-473e-424f-8a75-4c94792196c1" ], "x-ms-correlation-request-id": [ - "7850148b-f6c2-49c9-9fa1-ac702b1fa093" + "8763eb9e-473e-424f-8a75-4c94792196c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011151Z:7850148b-f6c2-49c9-9fa1-ac702b1fa093" + "WESTUS:20150515T233712Z:8763eb9e-473e-424f-8a75-4c94792196c1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:50 GMT" + "Fri, 15 May 2015 23:37:12 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -131,8 +131,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -140,7 +140,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "594" @@ -158,22 +158,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14971" ], "x-ms-request-id": [ - "c3735200-ea53-489f-8b99-56182d330af1" + "bb4cd7da-ec39-46e9-8d34-347c38de04d0" ], "x-ms-correlation-request-id": [ - "c3735200-ea53-489f-8b99-56182d330af1" + "bb4cd7da-ec39-46e9-8d34-347c38de04d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011154Z:c3735200-ea53-489f-8b99-56182d330af1" + "WESTUS:20150515T233715Z:bb4cd7da-ec39-46e9-8d34-347c38de04d0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:53 GMT" + "Fri, 15 May 2015 23:37:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -188,8 +188,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -197,7 +197,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"22c06b21-9833-4f9b-aef9-3128fcf628bc\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "796" @@ -215,22 +215,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14970" ], "x-ms-request-id": [ - "6a2a6214-5ad1-4362-9551-d7e33bc8bfb3" + "e1fac815-dac6-40a7-a952-1528095d206f" ], "x-ms-correlation-request-id": [ - "6a2a6214-5ad1-4362-9551-d7e33bc8bfb3" + "e1fac815-dac6-40a7-a952-1528095d206f" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011155Z:6a2a6214-5ad1-4362-9551-d7e33bc8bfb3" + "WESTUS:20150515T233716Z:e1fac815-dac6-40a7-a952-1528095d206f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:54 GMT" + "Fri, 15 May 2015 23:37:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -245,8 +245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -254,7 +254,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"22c06b21-9833-4f9b-aef9-3128fcf628bc\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"365b412c-9aaf-4ee3-ac51-0c3f5b0e9db4\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "998" @@ -272,22 +272,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14969" ], "x-ms-request-id": [ - "b155935b-d050-4bbe-a8d3-90492502768f" + "c3e1a3d5-ef44-4043-9f8d-14e0150d087e" ], "x-ms-correlation-request-id": [ - "b155935b-d050-4bbe-a8d3-90492502768f" + "c3e1a3d5-ef44-4043-9f8d-14e0150d087e" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011156Z:b155935b-d050-4bbe-a8d3-90492502768f" + "WESTUS:20150515T233717Z:c3e1a3d5-ef44-4043-9f8d-14e0150d087e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:55 GMT" + "Fri, 15 May 2015 23:37:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -302,8 +302,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -311,7 +311,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"365b412c-9aaf-4ee3-ac51-0c3f5b0e9db4\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "795" @@ -329,22 +329,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14968" ], "x-ms-request-id": [ - "04e6abdb-3e56-463b-8952-6c12ff7f0017" + "1345b177-79e7-477a-b76d-efdf1858a1b9" ], "x-ms-correlation-request-id": [ - "04e6abdb-3e56-463b-8952-6c12ff7f0017" + "1345b177-79e7-477a-b76d-efdf1858a1b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011157Z:04e6abdb-3e56-463b-8952-6c12ff7f0017" + "WESTUS:20150515T233718Z:1345b177-79e7-477a-b76d-efdf1858a1b9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:56 GMT" + "Fri, 15 May 2015 23:37:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -359,8 +359,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -368,10 +368,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -383,13 +383,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "154f61f1-c707-4f7e-97c3-37dba4d82e53" + "af3f8809-90b7-4eca-8846-ff79bff29148" ], "client-request-id": [ - "669917d0-e1cb-4ec2-a82f-e1c4f50e3151" + "c11ff6a9-d830-4921-852a-b1f19e6ddb0b" ], "x-ms-gateway-rewrite": [ "false" @@ -398,7 +398,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "RV67tSOX5zqv2wKV-vIYXf9eX2CntKUBaGXO5sOZ1bCetjmzEbx4QDrWeyyr2kyLppOQr_3P6CmxRkD-56_gvLnwbMTAe9AlI7gOsAxVDuiDzKJYh9EKTmNNWWXITwa1._FfaE1cR5jRv6d2urTmQmYBdUhJrIH93Vhbq1FeX_iQ" + "tzNnjoAUt4kgwhEJH69rKeTs7it80nIqjTMsxH5ew-1WBr9p5FHWfhyZF4-abPF-qA3RTrSXEQKyKDVzwYVf_R-jPZCj09BKc8yPnWfJRgX4wkjFczIvDOSr-qCNDdkrHU4NtnAI2XZg7gyx1lY_1g.wXmQcJqAjydoXKDQ6OmmHW3xG4yirlYZesnceXbIHRg" ], "X-Content-Type-Options": [ "nosniff" @@ -426,14 +426,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:50 GMT" + "Fri, 15 May 2015 23:37:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -441,10 +441,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -456,13 +456,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "439653c4-8edb-41e8-bed2-6d0a6b128be0" + "a8713b50-19f4-48ef-8b5e-994102a0d9b3" ], "client-request-id": [ - "3921f6a8-ab77-4b40-9aba-e40ae378a9ca" + "d106886a-81dc-4466-b694-e86c6a6a716d" ], "x-ms-gateway-rewrite": [ "false" @@ -471,7 +471,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "ycZIXEyURHH_d0UETNfvla5Qd4V9wV2b7Rj-5E3Tp9erLmn4NzBj5Xufv2WDF8Om79IZY4Spmgu3afXsEs3jaJvjSS89g0KpB4ktUqap7XjPBSnBIz3H7NEngfX6hlwV.QNjfMVXHsgCFG-2UNz-B_mPfKI5H4CEH9xpPdkfn6ao" + "QyV3Njd2EkAvBK9Qy7pcinJw30zoc9WVGLKS4Lcmw2ZP42ScGoSs7F9N23950M6b4vhK3jUppuOii5QmOaJVh4HFTTjo-hwX6T4eimWSaeBECJMgEqRvrjR97SYMC_qRG4uFPUPfcfkirZHpKmHqKg.eCgAyzs_IvacYKl8rfh42Mk4kkyfcIovskJ1CJ5q9h4" ], "X-Content-Type-Options": [ "nosniff" @@ -499,14 +499,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:54 GMT" + "Fri, 15 May 2015 23:37:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -514,10 +514,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -529,13 +529,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "a6880e22-2db5-44a3-b863-363f5a4ab2f6" + "3f050db3-25c9-454e-ba68-15fca40744f7" ], "client-request-id": [ - "0a02ffa6-f01b-4f83-9715-d8cd4d3365c4" + "3c340dda-e824-4a1b-899e-f96f00d27c5d" ], "x-ms-gateway-rewrite": [ "false" @@ -544,7 +544,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "ChaMbgRxU8hQxPZm1_0eX_N-q1MP_R0u7fgXaEbh10fc8K_VvSHFoN9K3bt1pbvFC2zIuTpP2g8oPpc8oZyf50OpQTyYMf4tF-ZQxHGLve5bltRmIjUdByT86e8pIemV.9hiS3crg05IxkyushnE8g6go5jmZ_74pQotVPp-aioI" + "_UnaGkSqkf1_YHohmeJNRKaPLBSJDMrxwXeUjG7LoEnUqgJ1by1FeUAft72Fa0zapBNzkx7auw0NCYQTHXaXA3papAYJN8FjgfePT_POFc4NFf7yFDiH6xiT7jZaI6baHGRsbpGXmbn24rnVdj9ygg.OX_LxN9ik5kZeOiycXUXkZgE_QG8cO1ddjFwyhQ6bco" ], "X-Content-Type-Options": [ "nosniff" @@ -572,14 +572,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:55 GMT" + "Fri, 15 May 2015 23:37:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,10 +587,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -602,13 +602,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "iwKDoymUnP81eA76VoGDi2ZdIuYEu6F4Fd6YisuDkTg=" ], "request-id": [ - "44f018e3-7291-4730-a990-0002545bf3eb" + "85792459-4c4e-4a9b-a418-47850173bbcd" ], "client-request-id": [ - "2f67080b-55bf-4011-9ad6-2c94f4f5e537" + "e38f2dfe-0989-422a-ab1d-a8ab86fc8069" ], "x-ms-gateway-rewrite": [ "false" @@ -617,7 +617,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "jW3VHnSTVW0kXP6fxEueGsPrzqMRnK_jWX3thVXUeqHRwLlfFs1l82gwu24Q8Bp2nYHzZIlNI1XIsv4VEv-y6DLNAZ8pWLIdXcBV2TYAVKOIutCIM8sFqTS0YmNFdb6j.tT4Mfd5Lsx_4K2qfPP1iQ2gCYxUygtZY81w5HyjAERg" + "3ZcosqVLh5lmqfX6TCCUOG-DbqleqvyWnrIOxUguf63kUPRctkjUTjwE5uYmp2LFrIKQX-r8KQ6bLEpm_Bn7S5BAB2iKIObP1CHBCBsKI6zGGqu_MqbmC6hSwNNVkWTgqNN1nwApMJg7bhMdJtQGlQ.tkXXqtFPXdTSSpQgIV2jDigtvPrpCDztz4MXs7Hgut0" ], "X-Content-Type-Options": [ "nosniff" @@ -645,14 +645,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:55 GMT" + "Fri, 15 May 2015 23:37:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -660,10 +660,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -675,13 +675,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "2e9d5ce2-0b25-4b10-b22c-39a3c34647e5" + "674754d6-2d4b-4850-942a-e547d30a7338" ], "client-request-id": [ - "f0d15636-f67f-474d-be28-2450915d4019" + "0f013cbd-5e22-47f4-94d6-0301b03b0b96" ], "x-ms-gateway-rewrite": [ "false" @@ -690,7 +690,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "wqeruOgg7jbQCWZyEW7nKY3xOE0wOui-3FWA-k2Oxsp0fbsJP8uehTZXItTuS-7yXQEAQk0V0MViVRZbjSPJ_as7qMa-dCNHFux8FExXjMc7miDq5iMcEsNS_Doe7Y34.pH85IAtInwyqeDWO9WMWUHTPDqDBurjh_PcOKje-ANM" + "q4ZhDVQaGGhXtug8redyM3ngRSMoPTcBl7_EtLN0_SVz_YP5YVKff74RlWCDMwrvPGcBF6mlR303iSNZVrli0qzl9vgOsecmkJ6B0Qr_Z4ePGvBQbqX__SZQiu3M7xAD102r2qUwOSArJEGiZEgHOw.R8X35sR4hMczQrFkOG9-C_LUyl7gHR2IWh959i4ZPbI" ], "X-Content-Type-Options": [ "nosniff" @@ -718,14 +718,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:55 GMT" + "Fri, 15 May 2015 23:37:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -733,10 +733,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -748,13 +748,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "bae17672-2b1f-4070-8161-85e3cb4985c4" + "110e9bb9-20e5-42ae-994f-8e362c369a10" ], "client-request-id": [ - "d0a9f6d3-ebe9-4317-b1ec-7d5625a4c265" + "88e80230-9aaa-43eb-a8ce-5c212ac622da" ], "x-ms-gateway-rewrite": [ "false" @@ -763,7 +763,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "CGk7--a-Z1mFLM3BYBxet1jeSQdhDVNeepLTK23-Xr5urR9kYgV9yRwpi_CYJGwPXv9vJ9QgJDF8xLAqvEp13kRSbrYIDqpyQbenB1M8VMfDYVB8XdUiZuMEnDg3dXJT.KiOcicvykDbBX_8lndFFedBV_BNzrjlMx2EGvymt1Bk" + "sOEx3-FYhLALYjrP4B_LH7nanHiDQZkUWJVZicQQy_rGwQYJ2S4KFHnS_ZCK9Y83ZMXL4Q2hvMuE-I0NCQ3ZROe790E6f8lUZ29YTp8IxRMyFKBlyka-y7LXBMQn31LUJ5Tt3r-_tp9kO3slmcEO7Q.RvJyz2L4UKcXJQurE0_dYhF7RJ7dGsMv1dxcEMFMEcE" ], "X-Content-Type-Options": [ "nosniff" @@ -791,14 +791,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:55 GMT" + "Fri, 15 May 2015 23:37:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,10 +806,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -821,13 +821,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "iwKDoymUnP81eA76VoGDi2ZdIuYEu6F4Fd6YisuDkTg=" ], "request-id": [ - "9f04db9d-f04a-49d4-a063-5637c94066c3" + "6f4f90ea-5ed9-4a44-82b4-b1692112fd3f" ], "client-request-id": [ - "d6a3283a-4792-41a9-aec2-00723f30449a" + "a33af8c7-8b01-437c-86aa-83f5c191111f" ], "x-ms-gateway-rewrite": [ "false" @@ -836,7 +836,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "pFB5vXzNVX84Mdp1CkFFc15Fp91XA3uLsshlTR2nk_IyJAmG91nEFjmrR44yeMGkd4IcJBG8oWfX6KwZzp0lncXJPQ36TQffLEtEBvNI0DIi0TQHFecnbfwIMDeV-gTP.KuqmHalLiZqU9_k9-HJ5eIHj2Xwpa3nQFgdjPVCCfKI" + "X7pXTqr04Sx1UCk9V3cHdwcicBswhVMQ7EuKki6XeC5W6Tuc8XbJlKBAzdzv7e_byY0M6TsoBOY_YvroJKKR2SpKFipNn2HGZQIU_brN1RrkmvHTTd-sxajvndG8wAmq.gw9J5OxqFd1FdX5XF4pFxTlkiL0zZ4izaQgS90qlVrA" ], "X-Content-Type-Options": [ "nosniff" @@ -864,14 +864,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:56 GMT" + "Fri, 15 May 2015 23:37:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,10 +879,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -894,13 +894,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + "iwKDoymUnP81eA76VoGDi2ZdIuYEu6F4Fd6YisuDkTg=" ], "request-id": [ - "6cd4f708-67bc-46b6-b01f-941e3c841323" + "4d030583-fd2b-4ed4-81e6-f5f949035797" ], "client-request-id": [ - "ef5e1731-ae80-4486-bcb3-55ce01c223db" + "3df09fc2-d6f5-42b6-9cb5-06f72547d1cc" ], "x-ms-gateway-rewrite": [ "false" @@ -909,7 +909,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "vjid83Z2nuItsr0HAseeWcGj3uR15BvNugzk9CJGShMCfaEzWxAmr1h0_Qv-X-JGn0qZWgS97vV3dWCWQHhXu0dWiWtIUn6ZzrYljEaNmSc1bgHNaEepz9O47yVaJGOE.GGGflz2h1iply7TLh1kb2s32Yr1n22d2Ap-9WFmZQHU" + "St9bSAIDYS-NJYV9x_aSbQDuDN7JH9MJJ9eiyxsVhR-RfqBJSyca5B67dJ7q3xNWJSufQO19rKDcdPXw7sdmwZQUhFJ3o3dAobc-AjDr0nSaUMO3TyzhXKv3-Kj6YlO5pLLFmvUlMXxWN7eXzPIEYg.cJ_jSY-67d_3_krJ-CeDCuXcJQ-ov44AqQY5gmlZOho" ], "X-Content-Type-Options": [ "nosniff" @@ -937,14 +937,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:56 GMT" + "Fri, 15 May 2015 23:37:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -952,10 +952,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -967,13 +967,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "e970d4fb-4ca3-40eb-b34b-67702262339e" + "d8e7324b-1f8f-45c0-b69d-b51e5b5f90bd" ], "client-request-id": [ - "f27a9aa5-9655-4001-9d7f-79843ffba538" + "8c5427a2-8542-476d-ac4b-2fc3cbf7dc3f" ], "x-ms-gateway-rewrite": [ "false" @@ -982,7 +982,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "TO4TtjliaU6KWxzKOjBkLa-4OosmOJDfqcdGrHJCKM-GY5_iQiz2Ie2s0ey0-HMyeOFN8JR-NjO_nShlkIQ06LpMu6PMQqyLQAU7Fs4_JHJvsC3HUxNxGBrFakq4i05Q.GpqixPuZ0nezTKcftb4NKYS-vL12bj0KUON4VU-Ru5Y" + "TeTL5bEGbCi2mCjBGy95Hryp7SgH_ihlEENeM-aK34C3PrlfbYInrfGzW0K5QDYWJHa0RIVt2qral71QBIDoM1yegirM3onvAddjVY3FH1CFKi7MB_polvDrt9qW6YqjLQWhlJ4QztB8hSaNgThlPA.Iv58f3Y4cQYI2hWGsMXBksymdoxgnj34VO5ImoX-SJM" ], "X-Content-Type-Options": [ "nosniff" @@ -1010,14 +1010,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:56 GMT" + "Fri, 15 May 2015 23:37:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1025,10 +1025,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1040,13 +1040,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "8954d4bb-5f72-4c78-96bb-beb77fa69d3c" + "283ab465-8179-4cd6-a266-f642407139d0" ], "client-request-id": [ - "1ee0efcc-c82a-4371-9d34-2fa2ade3a25f" + "56cb18ba-d86b-49b3-966b-f65676efb115" ], "x-ms-gateway-rewrite": [ "false" @@ -1055,7 +1055,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "EKK9VLmQ8v86v_pT6nTG1hBrjHkLq7xNEyyiyvH6fBY4Lqj1fTqa4FtaVxju_xSZlQEm42WLAXZuY6L24fBs6GCmni9U_TEC6P9DKKV7-Zo-rJT71xC12D_Glqein07I.k9S5itMf-u0tuJpqp7IxYuR4BwbYsGQwK5YW45fkLGo" + "ZQxVOT_EtTWgtCFRG8almzJUSXgOPU5iQvyN1y3YYv3qzJKVxciX4z5wb7buflz6GFAD6Cx8Jn1rdrQhcW3O8AvEm3x0vljF0NK34Tf1kyaP5KrPw5jCTo5rc_Zyr0FXZf9iFGjgKY_k5cDNeOcQAA.tY3Uel9R7LAfd9O5rO4pdBH6BGXRHx2fTreXP-LFDEg" ], "X-Content-Type-Options": [ "nosniff" @@ -1083,14 +1083,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:56 GMT" + "Fri, 15 May 2015 23:37:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,10 +1098,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1113,13 +1113,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "30cff7f3-2c90-4422-a9fc-2824cb7e4c37" + "3951764f-2af4-4482-94fc-6cb0b700c64d" ], "client-request-id": [ - "7f4e10fc-4c7d-4cfa-aa4f-c0205c57e60a" + "ef0bfdf9-8946-49d9-ab90-cf13ef758890" ], "x-ms-gateway-rewrite": [ "false" @@ -1128,7 +1128,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "XXtxZPumeL7ZEj-3YP-KaHtUuSdvtCAfNeZWhwgA8k9Ec0G2m6UdywelmlywXL1PIcoo4BBnq3yABzjgaqv11oL2aLq6nbpJ2nAtOP0jMLMarL7pCze6E9wDOJ4k7Web.OfOKFveavCa3TMXa4sg-3vyyS6y8JuaWXWZz5tSPnlI" + "5gogWNL-XQiZi4FVULZbhfcNrLegeVfD88aO6LF2xvvpYDxJ9sb5pOcRI0UdiHy8T6W9VielLofCXbo15dMfsJXWM8_8B_lCo08d8736XTj02Apipc5QKAHj7MQc4vE3cQAHRSJ4QI02mjssjes_Dg.r0scvjEA6s0WCBn041DObJmJQjqeYp3kGMw4eL32MkE" ], "X-Content-Type-Options": [ "nosniff" @@ -1156,14 +1156,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:57 GMT" + "Fri, 15 May 2015 23:37:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1171,10 +1171,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1186,13 +1186,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS62cdS3jxXz9WV41FbNbdFCgD8BZkeQdpb/3DuhgUM=" + "iwKDoymUnP81eA76VoGDi2ZdIuYEu6F4Fd6YisuDkTg=" ], "request-id": [ - "5379d627-a254-4cb6-9ded-cdb2f51e474d" + "e212b18d-f439-4c16-be90-0ef2f5efd168" ], "client-request-id": [ - "f3b483f8-907c-44a5-aaa9-ab99bd93c246" + "9da8793c-638c-4b5d-8915-99dd65064a55" ], "x-ms-gateway-rewrite": [ "false" @@ -1201,7 +1201,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "QLkCjI-7mfUfGJ8c7WeyyCvL3yCqVhcZbKpQtqwihIz2vZPOFu8hNU3LDrLik0MQeMtl-hoz_v2se9XawxiDTx9m_cpYwTKIf6RMkLmxPSY-Kl4ECFBNg8itIk6JPv_P.6_VzQOIZUGS2gDcN30us-ZWTw_8wMW7FsIevkUm27KU" + "uLhcpYFXyOX6QKIhfs4xScmjHKgVsQUQxYb-df0yeErS8tnQ80W5Q32YpxIrQoicBNdLyIkIdooxlog1dyKKhyLIeu1SiAWmwpW8Q3v2Xmzs-b6FpFgyws37u9381B3RVKffTY32Xkr2msC_KC48Ng.ier20TMVH0JuvC67M4HqhvUHfbIw7Lc0yhOI9_w_xa4" ], "X-Content-Type-Options": [ "nosniff" @@ -1229,14 +1229,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:57 GMT" + "Fri, 15 May 2015 23:37:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1244,10 +1244,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1259,13 +1259,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5FxyUdYcaSOVpf35oezVnCN2MwXkxpPBUmWHUk51r8c=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "74cf20f5-24c1-4130-a45b-1687c034075b" + "4d66c1fb-4437-47d2-8d99-bf0ba794ef12" ], "client-request-id": [ - "72890d23-7aa6-4459-82ea-84ca8d5bab1e" + "78941725-1a13-45a0-982c-b93bcd249a1a" ], "x-ms-gateway-rewrite": [ "false" @@ -1274,7 +1274,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "-tYy6fiik1RJLV3k6Ysq6wobJLg-XWnm6c22psNI_PzM03_FFcoK9TwtUVNeMFpiwAaz6kM-5FdaGQrmT9qP970dkonCS0srJhqHxEG2JtIc4KRj42XgMiQsvNDib7MR.SeFutOMrM7xxAU5HzWGaMvKTFfXkTage2v9abB_SVrM" + "W1WIy-9mwMwrsvdwA-QDzWBCfbLs9CyqPgc5AmVlEqrJdlAK9HQ_LFSMmLEh72Aea85Ep9_NXkPIr62IzWMf-bDNXWj1Sb8XlhMNOZRumKN3crgJPK1Le8e-ygnZv98mcAJhE_Oibd-uEUG3JOOQ-g.7Ij1oAi9mdVriQHw1biCPV1-KGpLlgoDf7Dly5sMSx4" ], "X-Content-Type-Options": [ "nosniff" @@ -1302,16 +1302,16 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:11:57 GMT" + "Fri, 15 May 2015 23:37:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1323,7 +1323,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "594" @@ -1341,22 +1341,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1182" ], "x-ms-request-id": [ - "ba6e9db9-f47f-4321-9879-ae0e22b9718f" + "3b07c4c1-3424-4c15-ba9c-90a36fd22028" ], "x-ms-correlation-request-id": [ - "ba6e9db9-f47f-4321-9879-ae0e22b9718f" + "3b07c4c1-3424-4c15-ba9c-90a36fd22028" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011154Z:ba6e9db9-f47f-4321-9879-ae0e22b9718f" + "WESTUS:20150515T233715Z:3b07c4c1-3424-4c15-ba9c-90a36fd22028" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:53 GMT" + "Fri, 15 May 2015 23:37:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1371,10 +1371,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"22c06b21-9833-4f9b-aef9-3128fcf628bc\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1386,7 +1386,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"22c06b21-9833-4f9b-aef9-3128fcf628bc\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "796" @@ -1404,22 +1404,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1181" ], "x-ms-request-id": [ - "b4810b59-4a5c-41d1-86cf-89a10299942e" + "c0d5e1f9-223f-48cf-b9bc-00bd4ad69fd1" ], "x-ms-correlation-request-id": [ - "b4810b59-4a5c-41d1-86cf-89a10299942e" + "c0d5e1f9-223f-48cf-b9bc-00bd4ad69fd1" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011155Z:b4810b59-4a5c-41d1-86cf-89a10299942e" + "WESTUS:20150515T233716Z:c0d5e1f9-223f-48cf-b9bc-00bd4ad69fd1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:54 GMT" + "Fri, 15 May 2015 23:37:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1434,10 +1434,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"22c06b21-9833-4f9b-aef9-3128fcf628bc\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"365b412c-9aaf-4ee3-ac51-0c3f5b0e9db4\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1449,7 +1449,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"e5f104f0-50b6-4ea1-9ea2-19a85cc1202f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"22c06b21-9833-4f9b-aef9-3128fcf628bc\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"365b412c-9aaf-4ee3-ac51-0c3f5b0e9db4\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "998" @@ -1467,22 +1467,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1180" ], "x-ms-request-id": [ - "7643aec3-44a5-4f25-8f69-fca99d2bf84d" + "2164530a-da3a-42f0-89f7-8dc9336dd30e" ], "x-ms-correlation-request-id": [ - "7643aec3-44a5-4f25-8f69-fca99d2bf84d" + "2164530a-da3a-42f0-89f7-8dc9336dd30e" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011156Z:7643aec3-44a5-4f25-8f69-fca99d2bf84d" + "WESTUS:20150515T233716Z:2164530a-da3a-42f0-89f7-8dc9336dd30e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:55 GMT" + "Fri, 15 May 2015 23:37:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1497,10 +1497,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"365b412c-9aaf-4ee3-ac51-0c3f5b0e9db4\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1512,7 +1512,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"51a8878e-abee-4f53-aad5-844c33d115ef\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"365b412c-9aaf-4ee3-ac51-0c3f5b0e9db4\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "795" @@ -1530,22 +1530,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1179" ], "x-ms-request-id": [ - "b840d90d-4cea-4ae4-80fe-2bef14ac5158" + "e24bba5b-0cc5-497c-91c9-7b2b61d6f3ef" ], "x-ms-correlation-request-id": [ - "b840d90d-4cea-4ae4-80fe-2bef14ac5158" + "e24bba5b-0cc5-497c-91c9-7b2b61d6f3ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011157Z:b840d90d-4cea-4ae4-80fe-2bef14ac5158" + "WESTUS:20150515T233717Z:e24bba5b-0cc5-497c-91c9-7b2b61d6f3ef" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:56 GMT" + "Fri, 15 May 2015 23:37:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1560,10 +1560,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzc2NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NTA0NT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1575,7 +1575,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg7651/providers/Microsoft.KeyVault/vaults/pshtestvault5045\",\r\n \"name\": \"pshtestvault5045\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault5045.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -1593,22 +1593,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1178" ], "x-ms-request-id": [ - "fc82c761-42c4-4d38-ab6a-4df20ac7e0c5" + "863d5180-18d7-4562-8ae0-8ca8bd3640f5" ], "x-ms-correlation-request-id": [ - "fc82c761-42c4-4d38-ab6a-4df20ac7e0c5" + "863d5180-18d7-4562-8ae0-8ca8bd3640f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T011158Z:fc82c761-42c4-4d38-ab6a-4df20ac7e0c5" + "WESTUS:20150515T233718Z:863d5180-18d7-4562-8ae0-8ca8bd3640f5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:11:57 GMT" + "Fri, 15 May 2015 23:37:18 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1625,14 +1625,14 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg7651", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault5045", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", - "User": "yuhuiz@ntdev.microsoft.com", - "AppId1": "e5f104f0-50b6-4ea1-9ea2-19a85cc1202f", - "AppId2": "51a8878e-abee-4f53-aad5-844c33d115ef", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com", + "AppId1": "22c06b21-9833-4f9b-aef9-3128fcf628bc", + "AppId2": "365b412c-9aaf-4ee3-ac51-0c3f5b0e9db4", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveNonExistentAccessPolicyDoesNotThrow.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveNonExistentAccessPolicyDoesNotThrow.json index 1715cc432754..2a5179834135 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveNonExistentAccessPolicyDoesNotThrow.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestRemoveNonExistentAccessPolicyDoesNotThrow.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14996" ], "x-ms-request-id": [ - "a80eda1a-145f-4afe-9c65-e88503f44f1a" + "ae1bcaef-b415-429a-9a7d-6c0d413c0fee" ], "x-ms-correlation-request-id": [ - "a80eda1a-145f-4afe-9c65-e88503f44f1a" + "ae1bcaef-b415-429a-9a7d-6c0d413c0fee" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195400Z:a80eda1a-145f-4afe-9c65-e88503f44f1a" + "WESTUS:20150515T233345Z:ae1bcaef-b415-429a-9a7d-6c0d413c0fee" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:54:00 GMT" + "Fri, 15 May 2015 23:33:44 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -58,8 +58,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -67,10 +67,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -82,13 +82,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "O3ABilcgdwphO4v4fgIn7pexShgiytgPqsA+U8jT/zk=" + "75ShSHQOKYDfqrCwgjP19v5Gc0xT9jfEGVxJuWp38PQ=" ], "request-id": [ - "09996c52-fc4f-48a3-868a-44109b71e895" + "12b00064-34b3-4bc5-9e98-a604d9405eee" ], "client-request-id": [ - "a4a565f1-3ecf-4f70-ad9f-61ee9002ed34" + "7e03f983-6aa0-4c10-bcb3-c15200649b02" ], "x-ms-gateway-rewrite": [ "false" @@ -97,7 +97,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "8J7cwO2x7Yi7KZDgD7_AJlyBlCxBRKTk4LBUwubgGxOusmEcXziUvGq4F-lFbE_axy9rChse4lKly42JWQ_THuQRuNS9Dukdrfp2HR7GyqBVsuFEAf-Ig0dDGYhGL9ylioQnaSgYhlyaoS53b7FnJA.Rmmuf7C2fhlxrStwz_qEEXlvdOEUKJL4YpiFrI_OWDY" + "9kwZSF__ayOhg5pXk_ty61E5nXkW1tpVVikoJkUm1OJ9dtTtkaTxoE3PgAhvUaBW4mHc7rzlZm7sdAf4-ewp_GGhgsPpQZNvgp6oJothPHWzuCLNCic6BepRaBj3bJ-A.FCb2mbQ_E5als4hT7Ml9Dexz1kG9ZfHubK_28ogmVko" ], "X-Content-Type-Options": [ "nosniff" @@ -125,16 +125,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:54:01 GMT" + "Fri, 15 May 2015 23:33:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -146,7 +146,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -164,22 +164,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1188" ], "x-ms-request-id": [ - "28343968-ecd1-4120-811a-54b7f61dd100" + "206ceea7-32e9-4f22-ae59-6556cc5abfd3" ], "x-ms-correlation-request-id": [ - "28343968-ecd1-4120-811a-54b7f61dd100" + "206ceea7-32e9-4f22-ae59-6556cc5abfd3" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T195404Z:28343968-ecd1-4120-811a-54b7f61dd100" + "WESTUS:20150515T233348Z:206ceea7-32e9-4f22-ae59-6556cc5abfd3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:54:03 GMT" + "Fri, 15 May 2015 23:33:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -196,12 +196,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "User": "divyag@ntdev.microsoft.com", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetCompoundIdAccessPolicy.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetCompoundIdAccessPolicy.json index ad2e86d3685f..ac1f14205cec 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetCompoundIdAccessPolicy.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetCompoundIdAccessPolicy.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/yuhuiz@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy95dWh1aXpAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -25,13 +25,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "90a0d4b2-b32d-4c1d-aa9c-ae0c0e0a6e5c" + "0c1761fb-56b4-4695-a782-823f0a8eda9f" ], "client-request-id": [ - "09b4d3a6-f440-4958-94af-00c52054fd4b" + "b40897cb-07dc-4ad6-a83f-3859c45e4b61" ], "x-ms-gateway-rewrite": [ "false" @@ -40,7 +40,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "H0KLBmhUuiGS0Rh5AcXa1Epq2nIdfrQDfVN9f0cpcFhIgV0N7TY40TAa_BglJHYS4EYsXJPOkYCLx4f0Ojf-i2MZFqhIX--_xFrCfJgx98c48oh6MSXg962qzWovR1QE.3EC3QXEQEo57xJMUZdiTNjVskTTO_Dz_jvBMjWUajEM" + "2lnHY1Tq_TydPbMA9SHbngktEsaUNcfmO4ImAtaBlXiV70ViItvpEcF-WTQ0UuheSDE6aMRHYGHyE5cWpBkhzXjNPk6Fl5eA516kA2CTfDqVEmxwj7aFfBhdw_WJCC4tW8gnGkHVQVD9uapJ7Igsog.4bCanYnP8_K5C9FqrPgct6KokSIyTkHyiTssJPLszL4" ], "X-Content-Type-Options": [ "nosniff" @@ -68,14 +68,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:38 GMT" + "Fri, 15 May 2015 23:36:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -83,7 +83,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -101,22 +101,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14994" ], "x-ms-request-id": [ - "cb159149-acb8-4de5-8e2d-765e0c7ee3ad" + "6c2a3bad-af6a-46a2-896f-b1ec4ef9e78f" ], "x-ms-correlation-request-id": [ - "cb159149-acb8-4de5-8e2d-765e0c7ee3ad" + "6c2a3bad-af6a-46a2-896f-b1ec4ef9e78f" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042242Z:cb159149-acb8-4de5-8e2d-765e0c7ee3ad" + "WESTUS:20150515T233635Z:6c2a3bad-af6a-46a2-896f-b1ec4ef9e78f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:42 GMT" + "Fri, 15 May 2015 23:36:34 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -131,8 +131,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -140,7 +140,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"bc583472-441f-4512-94dd-568d25e1fe64\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "649" @@ -158,22 +158,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14993" ], "x-ms-request-id": [ - "cb8ce994-b5e5-4cfb-8328-41646a1beb72" + "19a2b503-625e-42e4-9b8d-fb0b6e6be308" ], "x-ms-correlation-request-id": [ - "cb8ce994-b5e5-4cfb-8328-41646a1beb72" + "19a2b503-625e-42e4-9b8d-fb0b6e6be308" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042246Z:cb8ce994-b5e5-4cfb-8328-41646a1beb72" + "WESTUS:20150515T233638Z:19a2b503-625e-42e4-9b8d-fb0b6e6be308" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:46 GMT" + "Fri, 15 May 2015 23:36:37 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -188,8 +188,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -197,7 +197,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"bc583472-441f-4512-94dd-568d25e1fe64\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "796" @@ -215,22 +215,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14992" ], "x-ms-request-id": [ - "ba3c760e-92d2-49b9-9212-0d4d2089ba05" + "c387d171-4d83-49c1-ac73-bd2c1f32c48a" ], "x-ms-correlation-request-id": [ - "ba3c760e-92d2-49b9-9212-0d4d2089ba05" + "c387d171-4d83-49c1-ac73-bd2c1f32c48a" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042247Z:ba3c760e-92d2-49b9-9212-0d4d2089ba05" + "WESTUS:20150515T233638Z:c387d171-4d83-49c1-ac73-bd2c1f32c48a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:46 GMT" + "Fri, 15 May 2015 23:36:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -245,8 +245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -254,7 +254,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"bc583472-441f-4512-94dd-568d25e1fe64\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "786" @@ -272,22 +272,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14991" ], "x-ms-request-id": [ - "ff8bf15e-85bd-40cf-9281-e220510e516e" + "86b87464-1ee0-41c3-92f5-7643eb6ccad5" ], "x-ms-correlation-request-id": [ - "ff8bf15e-85bd-40cf-9281-e220510e516e" + "86b87464-1ee0-41c3-92f5-7643eb6ccad5" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042248Z:ff8bf15e-85bd-40cf-9281-e220510e516e" + "WESTUS:20150515T233639Z:86b87464-1ee0-41c3-92f5-7643eb6ccad5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:47 GMT" + "Fri, 15 May 2015 23:36:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -302,8 +302,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -311,7 +311,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "593" @@ -329,22 +329,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14990" ], "x-ms-request-id": [ - "6f0bbeb6-83ac-4a06-bebc-d07b29064f7b" + "960748e3-1d05-4257-bf02-5d478f8d1110" ], "x-ms-correlation-request-id": [ - "6f0bbeb6-83ac-4a06-bebc-d07b29064f7b" + "960748e3-1d05-4257-bf02-5d478f8d1110" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042248Z:6f0bbeb6-83ac-4a06-bebc-d07b29064f7b" + "WESTUS:20150515T233640Z:960748e3-1d05-4257-bf02-5d478f8d1110" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:48 GMT" + "Fri, 15 May 2015 23:36:39 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -359,8 +359,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -368,10 +368,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -383,13 +383,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "081c81d0-f3b3-4b59-90b6-420b932ca05a" + "5c122938-ae49-413e-bd1e-ea40397968e3" ], "client-request-id": [ - "597c2324-c71c-4dbe-b2f8-5dd297195c5f" + "2beb00d9-b75b-44c5-9b87-555a92c72712" ], "x-ms-gateway-rewrite": [ "false" @@ -398,7 +398,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "YbZO4vB2mCYt0kyhR21vif91adIb9eUluSV_1n6khUMTL04KJMWNEj55e8k33ZyJun-fuGxHbIj_WL0VCD6IIw-oGmc6PCicBxKnxo_iaj_gROJ4aSsgi9ZXKtx0lgNZ.ZPmKaiOV1CPoKbaxlKVOm8Mn6N8IvTsjHHoT60qFwjY" + "yOuWrEJuLPp5pSmDEu_-kqDm_lDYb3_OYVkxqBBHplEn6X0IJJv_YGr3M7s-X4zDdWCouzOeWWI9gzk0NjVSb7dSGih-GA9N2iUljkl-7qNDvfFpkOqXIeg4upFh-b3mN3qSupK9HVfZtOz4ys0RPQ.TG5UcO8cDicuhRk7lTMYB4nj_TEqNyG8HfVdTIBD9XE" ], "X-Content-Type-Options": [ "nosniff" @@ -426,14 +426,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:42 GMT" + "Fri, 15 May 2015 23:36:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -441,10 +441,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -456,13 +456,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "b12e3d56-9b6d-4d2f-9bec-a745a19d754e" + "0f049ac2-e810-49d9-9b0a-b67af80a900c" ], "client-request-id": [ - "e8d454c8-79f2-410f-b5d0-955ac6edcd68" + "8c3c454a-dbe1-43ee-8a64-8ef41dd146ce" ], "x-ms-gateway-rewrite": [ "false" @@ -471,7 +471,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "nma1P1bU5c4nYpNbJiyjrriBwNgOeUR9Na9R2u6KHJQKi_edmu7afxeVZJjBRMp3kAqqiR6x6xr1DoaqKsgU6hSFD08HjyKTItnDa3Og352kYQnNMVZ61L4eiOuYwqwa.7pS99wbvj7rnLYq3_r4C3dEcCCmiw9Ti4rRl8RtMjNQ" + "_amW0n0PON50kleVaUWzp49eteSiGMinUynk3XUOiOQgwSv2lRl68MASQ3rMOKT0gom5BXfCMjzxAhwmT0N76JVDbOyHkj3WzokqcUyZYcqk6TZD3Raw_w503-QJlYsACThrlT6vPIgysmJ8zbzNPw.B6Btiq0sOhgOT5AMERgERN_Mop4ZLB0OUes7nrKJ8S4" ], "X-Content-Type-Options": [ "nosniff" @@ -499,14 +499,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:45 GMT" + "Fri, 15 May 2015 23:36:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -514,10 +514,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -529,13 +529,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "4cfcdbc2-6f0a-47c5-a654-eb9117c1ee82" + "28acec93-fb23-4427-b9df-603513620d76" ], "client-request-id": [ - "fc7f4476-bb3b-4142-961b-e73acbd819e8" + "fd476fc7-c687-4b3f-ac37-4fb93ef135be" ], "x-ms-gateway-rewrite": [ "false" @@ -544,7 +544,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "huEtj44SXVpXEB8IwA-IXfhOXt0wp0NbF6UC2SfsHmv6se8InXZJ3XJhxPiqb6hqb4S_kr7nSeodPgvORUPEX-aSw4IQ04-sK9WEFpqlx_zcR1sGcs_JzbY-fFJwaixy.K9gOE38IZiWpxi3QVdPLLHa4HRWMffHiiWtlaTEZzAc" + "0QNfX2_dmY6CXWl2yPNT54Ilp7cvlsXmg9eTf9XN8co6HnfZNS44g10d2h5baexFNyMHcoo4YiX7ObHaJ-hd8a9Zj9X3nVtdbxoZ5lRbuDUCst62PzZ6H2s8AN0XEDzzGEOwnjaMCjAxARqRve3XeA.7Ks06syBHVWxtB0kX6--EjIdcsvoAjfJ1RWoP6x1jU0" ], "X-Content-Type-Options": [ "nosniff" @@ -572,14 +572,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:47 GMT" + "Fri, 15 May 2015 23:36:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,10 +587,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -602,13 +602,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + "+u3G9g5PWpdX413WhNwPLKppymwjckPFR0XoeOQ7+kA=" ], "request-id": [ - "b3aa415c-704f-46b4-bda8-d21deb1caa26" + "7d7cf672-c3ca-4dda-a438-1ffaabcdd86b" ], "client-request-id": [ - "508d2589-50be-467c-91c9-1c1ee41114c9" + "ec732095-0572-4c0c-92bb-05c19953d51a" ], "x-ms-gateway-rewrite": [ "false" @@ -617,7 +617,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "dgM_3OLm2E1d1TlmyUbvWtZZxrnn401SJsuCE8lKkmx0cmCSbt3-Y9dmrHvPQG4H64_XicOE-CkWffR4-iw9EOvJu29QHLs3ERehjg8fIangRfI9sQgyjSI9_nrhE3VJ.DN92Fv93A4DPoAWrHXEKkpI66f41CwARux0Dhf8pqG4" + "aK_fYrxJmYFh9Jo7f0koK-PA7tthsMsHQSZJRzrEvqobcCRnNEKHaRO5pgEapy09NtyASckXlJSeG4bdj6uCrQ91dQr4M_gOkCqe05HPnxqiRp1bjkChmSWBwGZYTTnn7O5QCuTLG98itLADqSxf0g.3iYF9RCbeEsdN9TVRVOy0SeKwFqbOrOhwrKPzplcvJY" ], "X-Content-Type-Options": [ "nosniff" @@ -645,14 +645,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:47 GMT" + "Fri, 15 May 2015 23:36:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -660,10 +660,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -675,13 +675,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "5369fdbc-ba79-4ff1-a2a0-fddb1563e6e3" + "05cbfae2-8747-4324-986c-140dfba5efb4" ], "client-request-id": [ - "d05132fa-e4bb-4ebe-bd4b-84fa64b1b7c0" + "f6e1199b-aa2f-4abf-a1d5-906dea8a56a9" ], "x-ms-gateway-rewrite": [ "false" @@ -690,7 +690,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "G0qRNdD2gC_8FP6UZSvv82G8LoumIvKibmrAVylwU2GHn5XWqRu0xxzkEMg8CnYHM3lRd-0Kwf9qFJf3_88SyEUkxhFNFvM8UVN-ogc2dNpClHWOQxe-TVvTlPx_T3ib.5G8D8qC0Kr6Aki56pN3GRjDe-HqUyBxR1cnuz855_NI" + "EAG_dIyhGof3ZwKltCRwHobR4MBMIKaRf32WVs5Yl8pxn25jtzn4tIFBv7QWzL0ZM_YbH5aj19HjU-l-G2FL0MEXdKAOnLh2rfNHt9LjwVPHZQ0Pzy-6G6mFwQVv27mylp5EzE-sclKrRa_5_UGLSg.Cvui_2FsZFagptxTco7T1I8dmq0BZYGvXsnXUn8o0wQ" ], "X-Content-Type-Options": [ "nosniff" @@ -718,14 +718,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:47 GMT" + "Fri, 15 May 2015 23:36:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -733,10 +733,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -748,13 +748,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "+u3G9g5PWpdX413WhNwPLKppymwjckPFR0XoeOQ7+kA=" ], "request-id": [ - "1822f8e7-eefc-4638-a81d-f8b1b0e5fcd3" + "1a56b6d9-cdad-4b29-bcd1-13125f0d2bcb" ], "client-request-id": [ - "ab6abb81-dc30-4de5-951e-8859022f6609" + "04e69369-fa00-42b2-a72d-959da6fdfaed" ], "x-ms-gateway-rewrite": [ "false" @@ -763,7 +763,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "2NcZMpJSfr2uhceDgLvMgTg23Vn5LRqPmIOoTSRNl3E_wCEqhHhgSN30ZqFmolHyflBhXqe_93x0E8fr5ivUpRDtbUk7se-79n05OPFyos1-ZCK5-YnZw6Pf-kt1VmVF.BQyHEgCdObtJbo8sStntO-ZKo_Y7cmWAbQE1rNDSvgg" + "YhvIpYFJmXvQC7jTILKMKmlJzpCL7ledIsQDGCK-toUkvLLdenJNF79hKO1gVIVnSz_oxyHPU4NFYXGQgHd_WDWtUYqzAbu23JTxjhNsIFFsO8tPSn7gGW6pE9HfAjJnUD70ymXicKpl3jMIFP9nbQ.zPOeBd5aSnhE-qKldNyXyNpTb056SGvOr3WmDJZ53uo" ], "X-Content-Type-Options": [ "nosniff" @@ -791,14 +791,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:47 GMT" + "Fri, 15 May 2015 23:36:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,10 +806,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -821,13 +821,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "48jy7KgKFTsMiecpM4WUCGol4ILBn2ZSwN2hY2pE3Nc=" ], "request-id": [ - "ee2277d1-7900-49ce-b6e6-e231543b0368" + "fba73c62-3fd5-4291-a4a9-fb2066cd2ce3" ], "client-request-id": [ - "475d39f8-ab6b-4f16-97e8-6a9b58a4136b" + "37130f5d-7e29-450d-b2a0-0424f878889a" ], "x-ms-gateway-rewrite": [ "false" @@ -836,7 +836,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "KnmXl9Wy5Pq7cskGuKW7oTMxdeKirI221rAjYSwtjTnUUZw1adgHrRVwQZvpX-mpFouJFq79MM6tmmu_Qpgamkp5Z_DJFpX8-oMu_-TU_-9WCSQ2PucP6EMTDnIg5Lgp.ZugtKSygFa2LIUxAU8N6nX07uai39QjtgT2FNOB4ErQ" + "rxusKnRX7j7KbI2bG25_rMQGHEfPXUtEPsIngN4jW2cDMd0793bBsEswJq-quHY7LWe2nIIxgbJKTEzrWryJ-kZta6nTrVW81WjglbEMzENVQ0Wj-wio6Efi12vbMF8iHEuC-pxIZ5WhX5B9CFzP9Q.4mdlDAPA7MCYbGBQsH8z7RjF20_XxN9Zq0_5L46Oyjg" ], "X-Content-Type-Options": [ "nosniff" @@ -864,14 +864,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:48 GMT" + "Fri, 15 May 2015 23:36:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,10 +879,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -894,13 +894,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "8725634a-99e3-41d6-a021-f3435dfab12d" + "406e0480-6655-445e-964e-aff89a1e3e51" ], "client-request-id": [ - "c7378389-60af-4172-9360-461f498e491c" + "5d34c8fb-15a0-45aa-b75e-c1afbd45ea5a" ], "x-ms-gateway-rewrite": [ "false" @@ -909,7 +909,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "-bLMoja0IeoA6vC-U9WQl_zEplNNoWrVMALaQeIiYQe_PDu7Pgbrp_TlifjRe-Pmid2wgr-8Ir7NyfF_CuVXmx5ASx5dSpvuqerVHCK1amYMvUyLXl5VzNcL0e3ECeO8.OEGzeV74x-ojnrj07NEHK7glxHRuGPdQfaCWf19QZc4" + "9Hh5VZ9sdMOI4aHLG9cAqvCUU52eU6myMQb6MH3fqSUTo-09xxm8TnjoBh_3yMp8ms28jEXpwXqYyxHHildTrsX8BSE-N4b15KL38qE8bp0-M_hmk19GZL0_0f9BDChTnaf5NoZRY25KysMGnxzXeQ.A_h52Uz6FlYjpPEcHef9TJpZSArc5gRUdzAg8IEGXUs" ], "X-Content-Type-Options": [ "nosniff" @@ -937,14 +937,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:48 GMT" + "Fri, 15 May 2015 23:36:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -952,10 +952,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -967,13 +967,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "3d8753c7-796d-4064-9f01-497dc17cdb7e" + "66da8244-3b50-4371-afcc-c2b3206c5273" ], "client-request-id": [ - "b8308bb4-4777-4b70-b94a-788157351919" + "2d2e030f-f698-4beb-919c-aea53e78a18c" ], "x-ms-gateway-rewrite": [ "false" @@ -982,7 +982,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "rgjxo_8sbZ6E2YDlFWa0k9P7ku_goL6kJ1NgAOIs1N3g8qIJDzu8WO3PnMxlZxyJCmVsuPJyaK1p4bbEm2_7C3Z7P3vrU-9_un7HKLNTtIac4vas0b2m9UB9t_sTkQI2.lnDaK4pBa__SM1hNRfb7jipW_3NvdxMIDw-8gZNqGfM" + "J5pNLVwr5bIYn0kK37cIMwFCfmfCOzVLgGPJPR3oRYlf02hrhAlYpg8O3se7DaydKqn-eHg6bXjO2nGHdfjvndGraCUlTbfyLpWej8KLtY4_7WwHKu42_QMkY0gIngBASv0EmPxbvT9ml2jM42RkzQ.-xut8sEqdpUbsE2lVii0x1fk4UAVsakR0Pk_AZhtxmc" ], "X-Content-Type-Options": [ "nosniff" @@ -1010,14 +1010,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:48 GMT" + "Fri, 15 May 2015 23:36:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1025,10 +1025,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1040,13 +1040,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "9Bp1nQU/JhaSO3lV8bBy7mMK4p3NOMvZqoAcpeeOoc8=" + "+u3G9g5PWpdX413WhNwPLKppymwjckPFR0XoeOQ7+kA=" ], "request-id": [ - "c0e1d9a8-678f-4760-add9-a5b54fde8f32" + "e9fa4546-8895-4427-8536-4f7cd9c5b183" ], "client-request-id": [ - "be410968-cf66-476f-bcbc-247eda53d3b3" + "4ea24c75-8286-432d-ab19-f0098571230e" ], "x-ms-gateway-rewrite": [ "false" @@ -1055,7 +1055,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "x9MfKUNPjirGdnAsqGt_UD0KTsUXGqqzbPuXpdVdWbdvuPbfnzQlvorNAIMQ8l9xJg2A4uRAxi4Nn_2srXIS1Tt2Y15uaAqN39drHA51Gp8wu3nJrzJP9z6J55j6MIye.C8zpHiEReweU9FgY84HdldGXNZXtXdxl84QzOBpbiMg" + "wvZ7hVz8skCZ20YjRlwWv0M0mKm03IRwSO1PNKqJXEBJX4abISl-71GQ_KRmRyJPTi1asjzxBXSWCC_yFX2288CoWWE3ivBBitijqTNBIEJQl6I8KLu2E98s6cejdX3z3gGY_NHWuK8EdXMKTYy1pQ.i4-k0W6mGdtyRjufR3r2ZCEYfiE-R6bjRpg-RBTNvKI" ], "X-Content-Type-Options": [ "nosniff" @@ -1083,14 +1083,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:48 GMT" + "Fri, 15 May 2015 23:36:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,10 +1098,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1113,13 +1113,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QyNul+QHNehCBkdgefKI8GTyyTZdKljRxMVgIG/Sq7g=" + "gqiNgf5NlZ7CoKlKn6ksAAz0DY2Obmmx+EN7hzvHgo4=" ], "request-id": [ - "70001b77-3edc-4152-a3a2-fff216322009" + "dc2a5d82-6479-4f85-81c1-4c27a9100bf2" ], "client-request-id": [ - "9cd9df08-decf-408c-beac-83c80d4311ae" + "b80334bd-c4b1-4be6-98ce-7b6de6dc693a" ], "x-ms-gateway-rewrite": [ "false" @@ -1128,7 +1128,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "3s4YwUx6y0cEUNyX-QU26NRKpd6mnYTGSjLM3qssPyY7wz_42nWQZTu1aULpmPezma2GW8WOKrVGsZK0jhlaR7S-gs9rPh_3Sfyj1TCIofOH7efCpczAfZF6Ny5yiNlI.VyaEdE2ViyN0QGgR4QlnA8vV7I9zRyx3iJvRcEv_EAA" + "YSSjIjwrDjd4w2fi6iey5d4j98T8A6kPTEdQrbeiYPf8f4w2gz6AofXmw3MhRX4pr2VvbImRpCU5x2UKAMpglteOeqwVpCDuvl5G64K57CqvQVHkCFilwrAW3hjpElt5jQNv1tMFmgm6oFSXpToOPg.QEMxl9aP3Oag6fbJrjaoZ5D4teS0Wk6hBQ8LZ_Mezp4" ], "X-Content-Type-Options": [ "nosniff" @@ -1156,16 +1156,16 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 04:22:49 GMT" + "Fri, 15 May 2015 23:36:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"bc583472-441f-4512-94dd-568d25e1fe64\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1177,7 +1177,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"bc583472-441f-4512-94dd-568d25e1fe64\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "649" @@ -1195,22 +1195,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "c0453b4d-5e19-4d4c-953b-27afbfd6ee71" + "f9575740-1408-484c-9acc-7cae56fcc3a3" ], "x-ms-correlation-request-id": [ - "c0453b4d-5e19-4d4c-953b-27afbfd6ee71" + "f9575740-1408-484c-9acc-7cae56fcc3a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042246Z:c0453b4d-5e19-4d4c-953b-27afbfd6ee71" + "WESTUS:20150515T233637Z:f9575740-1408-484c-9acc-7cae56fcc3a3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:45 GMT" + "Fri, 15 May 2015 23:36:36 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1225,10 +1225,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"bc583472-441f-4512-94dd-568d25e1fe64\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1240,7 +1240,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"bc583472-441f-4512-94dd-568d25e1fe64\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "796" @@ -1258,22 +1258,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "8a43764d-cf98-43a3-9fcc-4a44b8ab47c7" + "c0cbdfb1-34cb-44d5-ad41-a2000c26b9fb" ], "x-ms-correlation-request-id": [ - "8a43764d-cf98-43a3-9fcc-4a44b8ab47c7" + "c0cbdfb1-34cb-44d5-ad41-a2000c26b9fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042246Z:8a43764d-cf98-43a3-9fcc-4a44b8ab47c7" + "WESTUS:20150515T233638Z:c0cbdfb1-34cb-44d5-ad41-a2000c26b9fb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:46 GMT" + "Fri, 15 May 2015 23:36:37 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1288,10 +1288,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"bc583472-441f-4512-94dd-568d25e1fe64\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1303,7 +1303,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"b3917224-3c9d-4fe6-9f2c-a5231cc43e25\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"bc583472-441f-4512-94dd-568d25e1fe64\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "786" @@ -1321,22 +1321,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-request-id": [ - "fba1e69b-a93b-4170-8cfc-2dc23af1d57b" + "449ed3d9-7164-4ef0-8242-712cd883a35f" ], "x-ms-correlation-request-id": [ - "fba1e69b-a93b-4170-8cfc-2dc23af1d57b" + "449ed3d9-7164-4ef0-8242-712cd883a35f" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042247Z:fba1e69b-a93b-4170-8cfc-2dc23af1d57b" + "WESTUS:20150515T233639Z:449ed3d9-7164-4ef0-8242-712cd883a35f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:47 GMT" + "Fri, 15 May 2015 23:36:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1351,10 +1351,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1366,7 +1366,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "593" @@ -1384,22 +1384,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-request-id": [ - "f55346a7-e9b0-45e5-810b-6bccaf0a05bc" + "310ba33e-dc87-41f6-b710-6dc713371f30" ], "x-ms-correlation-request-id": [ - "f55346a7-e9b0-45e5-810b-6bccaf0a05bc" + "310ba33e-dc87-41f6-b710-6dc713371f30" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042248Z:f55346a7-e9b0-45e5-810b-6bccaf0a05bc" + "WESTUS:20150515T233640Z:310ba33e-dc87-41f6-b710-6dc713371f30" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:48 GMT" + "Fri, 15 May 2015 23:36:39 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1414,10 +1414,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzQ1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjE3Mz9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1429,7 +1429,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg4506/providers/Microsoft.KeyVault/vaults/pshtestvault2173\",\r\n \"name\": \"pshtestvault2173\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2173.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -1447,22 +1447,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-request-id": [ - "6f9f720b-8032-47dc-897b-5c47a099293f" + "58a07209-4da1-4fc6-b222-f8731b1f413a" ], "x-ms-correlation-request-id": [ - "6f9f720b-8032-47dc-897b-5c47a099293f" + "58a07209-4da1-4fc6-b222-f8731b1f413a" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T042249Z:6f9f720b-8032-47dc-897b-5c47a099293f" + "WESTUS:20150515T233640Z:58a07209-4da1-4fc6-b222-f8731b1f413a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 04:22:49 GMT" + "Fri, 15 May 2015 23:36:39 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1479,13 +1479,13 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg4506", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault2173", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", - "User": "yuhuiz@ntdev.microsoft.com", - "AppId1": "b3917224-3c9d-4fe6-9f2c-a5231cc43e25", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com", + "AppId1": "bc583472-441f-4512-94dd-568d25e1fe64", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByCompoundId.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByCompoundId.json index c55ba56941e9..0311fd91a491 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByCompoundId.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByCompoundId.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/yuhuiz@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy95dWh1aXpAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -25,13 +25,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + "fhlmJNLYPnp764O9rf98r+032N8xEbAipKeUghbHIVU=" ], "request-id": [ - "5a2960e2-d36f-42ed-9c26-a7601055055c" + "3c5c600b-3441-454c-a827-e780fd580a78" ], "client-request-id": [ - "5ee48aea-cd8d-4d01-bca2-315de6b2394b" + "f0dadde5-8983-4e87-ba4f-993636828e5e" ], "x-ms-gateway-rewrite": [ "false" @@ -40,7 +40,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "rNpyzUbVEBDRiIrx2KLqX5fx_pyfGeg5RwvadZkvrnl-twA5J9UotjQBoY04TpoDi8T795WtxJY4qb-c2BX1NR3U5_gzkTunqwVgmaVE5jFbASedJ-gxVABu6-FSP3Ni.HzhhOsVfhpjscBgebzG6pTOxGlEV4V9mNRM4Smuc64k" + "qTzv_XIPrxwZe9x8XhR9o7MWL3JsUUU6jbwFKXinpvauobXHy5n2thMQmR3pB2ui8Jh-tSgZq9KLPPObFJ1j91_caYPr4gjx4wpmeTBAmX5jc02pAFdqNYi7wwIpJ0Hi.3u76Q6zSvGLp0Wn-X4140z8rOaW6oJnpcm0CZp4EYzs" ], "X-Content-Type-Options": [ "nosniff" @@ -68,14 +68,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:08:36 GMT" + "Fri, 15 May 2015 23:34:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzkwMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjQwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -83,7 +83,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409\",\r\n \"name\": \"pshtestvault6409\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -101,22 +101,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14981" ], "x-ms-request-id": [ - "9dcd9c6b-8ce9-4ae3-ba2b-c528e9b987cb" + "6ca6efef-68dc-4275-831d-61f9681267d0" ], "x-ms-correlation-request-id": [ - "9dcd9c6b-8ce9-4ae3-ba2b-c528e9b987cb" + "6ca6efef-68dc-4275-831d-61f9681267d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T010837Z:9dcd9c6b-8ce9-4ae3-ba2b-c528e9b987cb" + "WESTUS:20150515T233413Z:6ca6efef-68dc-4275-831d-61f9681267d0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:08:36 GMT" + "Fri, 15 May 2015 23:34:12 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -131,8 +131,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzkwMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjQwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -140,7 +140,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409\",\r\n \"name\": \"pshtestvault6409\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"c4111568-5480-4dcc-b818-12c6bd7da545\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"3d92964b-a107-42b7-870c-082d70e5cfb5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "649" @@ -158,22 +158,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14980" ], "x-ms-request-id": [ - "4275ad65-41f5-4286-aadf-4a1a363bda61" + "dfba7b2e-b3a5-476c-a314-78b2ab2440fc" ], "x-ms-correlation-request-id": [ - "4275ad65-41f5-4286-aadf-4a1a363bda61" + "dfba7b2e-b3a5-476c-a314-78b2ab2440fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T010841Z:4275ad65-41f5-4286-aadf-4a1a363bda61" + "WESTUS:20150515T233415Z:dfba7b2e-b3a5-476c-a314-78b2ab2440fc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:08:40 GMT" + "Fri, 15 May 2015 23:34:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -188,8 +188,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -197,10 +197,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -212,13 +212,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "FpbEqwjNE5UgQMRKJCh+5oT77dK8Xy2HF5eIvb2XUK4=" + "VE96ymV+N7+qIsCyCRMEXtWtFdJRAMYbA69ATN4L+b0=" ], "request-id": [ - "05083c0a-84ad-4a7c-9a29-9290a6745317" + "2087364d-c7a4-487e-9716-6ace93e1890f" ], "client-request-id": [ - "a8e68955-6403-459a-bd7d-31bdfe25e045" + "b5e1b26d-61c0-4b97-86df-6a3719e46427" ], "x-ms-gateway-rewrite": [ "false" @@ -227,7 +227,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "5iKXPpFqr-dXpQ1YFYSiwt40khnD5K5GKDOoaauBTibTzA4408If4hD9Y3tuMm34uJeLytoNmWYIG3tmR3SfFcZOghNs0CKgwgBJSQNCI_2Q2Rnysooy7SMY9O6pmU5Y.PdYjMHKHxtjKW0fjN9YJ_iYtxkhcJJGsdtn2c9J6FaM" + "2fP0bf8YG7weU7-UiaNHFZr1sLNrZ2kPj4fG985Dq-6YM4a0cr_ycOpdKdy4sX03hyZArDDXKvAIrxgBC6xG3-QhwH3mOKc-K-tqvTlRbLbiHNtjaPkKj4Z9s_L9gTdH.13g0ZDxjf0zXXZiW55jutBWYUgMAcZKDgaEXvomLfeM" ], "X-Content-Type-Options": [ "nosniff" @@ -255,14 +255,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:08:37 GMT" + "Fri, 15 May 2015 23:34:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -270,10 +270,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -285,13 +285,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "FpbEqwjNE5UgQMRKJCh+5oT77dK8Xy2HF5eIvb2XUK4=" + "9Bp1nQU/JhaSO3lV8bBy7mMK4p3NOMvZqoAcpeeOoc8=" ], "request-id": [ - "ce563ea9-2be9-4f4d-abd7-f21efbab8d23" + "8303c752-cc2e-413f-a8ce-327e072a9a06" ], "client-request-id": [ - "bce48555-0bfd-4de3-8781-a50bcc9593b2" + "edbdfe56-366d-460c-b5b0-726f97428a9f" ], "x-ms-gateway-rewrite": [ "false" @@ -300,7 +300,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "Ru7I96I4KSmC_Yn5IZBtX3iTIDFkX4tnnfntBqR9wIRMacWu7dwYvfSM-5D2UQVO8WesmtgLHpHLSNDzGcZ_AI7OWUBG_HI9L9YR8wXGO6kBspm1r7ik8VNgk73z_yhS.gO5h7NHjXvh2-GpcrZA0G-z1HqNj0z1KFH5_L4V1T5s" + "8WHmoGt6uKyjIiXCqJHxhIfYvbHYtc3MZ72NMhyDpAm-Jrll5mUfIyoGVzbo_0dhpGG2RTcoLAZE7fKksL3jK9956ESJc3DZsmGH-E7hQOEsw5OfqA3ugjSQcuA_U7oM.GWdBC4JRtPSOYSTIRFcXB-dltpTMC3DbeESZl3P0Sg0" ], "X-Content-Type-Options": [ "nosniff" @@ -328,14 +328,14 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:08:40 GMT" + "Fri, 15 May 2015 23:34:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy85Y2YxZGQ5Yi1iMzA2LTRjZmQtOWFjYy1kY2Y4ZThmNjQxOTc/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -343,10 +343,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-24T21:27:23Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-05-24T03:27:16Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2013-09-19T22:21:50Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-10T07:20:02Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Yuhui Zhong\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"227004\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"227004\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Yuhui\",\r\n \"immutableId\": \"227004\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:34:50Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"yuhuiz@microsoft.com\",\r\n \"mailNickname\": \"yuhuiz\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE80068932\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLGiE0AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2138\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"yuhuiz@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yuhuiz\",\r\n \"smtp:yuhuiz@exchange.microsoft.com\",\r\n \"SMTP:yuhuiz@microsoft.com\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yuhui Zhong\",\r\n \"X500:/o=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=07d6efb4f4cd40afbb0a1a7b48a8a5a5\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yuhui Zhong\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuizdddba32992\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yuhuiz\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_357f035931\",\r\n \"X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yuhui Zhong\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yuhuiz_exchange.microsoft.comc77de872\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yuhuiz_69b210ab03\",\r\n \"smtp:YUHUIZ@service.microsoft.com\",\r\n \"smtp:yuhuiz@ntdev.microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=yuhuiz\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"yuhuiz@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"yuhuiz@microsoft.com\",\r\n \"yuhuiz@exchange.microsoft.com\",\r\n \"YUHUIZ@service.microsoft.com\",\r\n \"yuhuiz@ntdev.microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Zhong\",\r\n \"telephoneNumber\": \"+1 (425) 7226947 X26947\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"yuhuiz@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7120" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -358,13 +358,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+g9S9df1eU79iMfVZ0psO4Vd6TCUCddyFguh8uT50fw=" + "fhlmJNLYPnp764O9rf98r+032N8xEbAipKeUghbHIVU=" ], "request-id": [ - "60f9ea27-e322-4dcd-9f62-5fe85b2e8eee" + "6b7218fe-a0ed-4ffa-a791-fa20b0b1d1fd" ], "client-request-id": [ - "7dce2a35-1119-4dd1-b406-5098f9c0edf5" + "f62486ff-4ad8-4933-9861-7c8c6a86edfe" ], "x-ms-gateway-rewrite": [ "false" @@ -373,7 +373,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "TJhq6ThHzJr4TSTX0f0kSLXvEE9D4jm45dD3WQfNEB6ia0ohNbLvbmeEPHYtfE6Rb2Y0myMVGWToIg2HrVKCJZI9v9K34hklN92s9-HoniDZewcHrfbGrgbcx0ybxARs.YkVwVv2a5cvEGLftnbI4Lh4Yy1fCmhbXyTMrFvFIjjc" + "kD60Ks45BVrMkRpJLz10D_VN_-i_5IJ8fbNnoW05dk_QBCctYgxmo90mAwbkruLRR4CRS947lSgoxz8VPMvXK0p-AGqwGyOQYFksO0Epa_IvI-pz6joMLsJU81vAc_h8.L8gDIK0p1ipiL6xbMdlPuwhGnHNjvzqQ5JqbJ1U3V1Q" ], "X-Content-Type-Options": [ "nosniff" @@ -401,16 +401,16 @@ "ASP.NET" ], "Date": [ - "Fri, 15 May 2015 01:08:40 GMT" + "Fri, 15 May 2015 23:34:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzkwMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjQwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"c4111568-5480-4dcc-b818-12c6bd7da545\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"3d92964b-a107-42b7-870c-082d70e5cfb5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -422,7 +422,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409\",\r\n \"name\": \"pshtestvault6409\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"9cf1dd9b-b306-4cfd-9acc-dcf8e8f64197\",\r\n \"applicationId\": \"c4111568-5480-4dcc-b818-12c6bd7da545\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"applicationId\": \"3d92964b-a107-42b7-870c-082d70e5cfb5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "649" @@ -440,22 +440,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-request-id": [ - "42eebc19-c2f3-4878-9b4d-61a365d69cb3" + "b080745f-73be-4913-8168-14d3175e01ca" ], "x-ms-correlation-request-id": [ - "42eebc19-c2f3-4878-9b4d-61a365d69cb3" + "b080745f-73be-4913-8168-14d3175e01ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T010840Z:42eebc19-c2f3-4878-9b4d-61a365d69cb3" + "WESTUS:20150515T233415Z:b080745f-73be-4913-8168-14d3175e01ca" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:08:39 GMT" + "Fri, 15 May 2015 23:34:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -470,10 +470,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzI2MTlmMDgtNTdmNy00OTJiLWE5YzMtNDVkZWUyMzM4MDViL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzkwMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0NjQwOT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -485,7 +485,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c2619f08-57f7-492b-a9c3-45dee233805b/resourceGroups/pshtestrg9017/providers/Microsoft.KeyVault/vaults/pshtestvault6409\",\r\n \"name\": \"pshtestvault6409\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault6409.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -503,22 +503,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-request-id": [ - "b5125d49-d117-48ab-90f0-bd0373b6f3e6" + "0440f23a-f49f-4fbc-84d8-ad201663e115" ], "x-ms-correlation-request-id": [ - "b5125d49-d117-48ab-90f0-bd0373b6f3e6" + "0440f23a-f49f-4fbc-84d8-ad201663e115" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T010841Z:b5125d49-d117-48ab-90f0-bd0373b6f3e6" + "WESTUS:20150515T233416Z:0440f23a-f49f-4fbc-84d8-ad201663e115" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 15 May 2015 01:08:40 GMT" + "Fri, 15 May 2015 23:34:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -535,13 +535,13 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg9017", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault6409", - "SubscriptionId": "c2619f08-57f7-492b-a9c3-45dee233805b", - "User": "yuhuiz@ntdev.microsoft.com", - "AppId1": "c4111568-5480-4dcc-b818-12c6bd7da545", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com", + "AppId1": "3d92964b-a107-42b7-870c-082d70e5cfb5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByObjectId.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByObjectId.json index 2250df5392ba..362cdc533c06 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByObjectId.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByObjectId.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -25,13 +25,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS5n1gIKpvuVz70gIQwT3GyktIuQo1lHcmSA2GJAH2A=" + "VVxluyB/90ULVNmN4ohZDq4pPkM8JjJfz7sFteoBp9Y=" ], "request-id": [ - "05bd4c0a-9c03-4217-a0fb-25dedfc2b9ab" + "0993a18f-3fe6-4970-8c6c-7b2043681047" ], "client-request-id": [ - "a1e1d9d0-df81-40fe-9930-c621ebff5288" + "9baddcd1-940a-440c-8a2a-76facbcf2fdd" ], "x-ms-gateway-rewrite": [ "false" @@ -40,7 +40,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "ehhq-QbLBylL2ocngZlrAxvdMG6fAymx36oj9V9YFn7gfEpojcpuX-shPxPZ1t6ucil7vqWHQ3y9vHQtRLlTROWijac-g8MZxJ4amTOCsjiDdgwtHPuKgutqsnHeQiO3.9J7g3K5kviOtr-vXqC5sZ7I2vbPJw_WIrRQB2ESaknc" + "-aLkSOUrgXI6GmnA3gXLZCaZTAic8FkF18-H2FXu5N_PIwFjEfL_-U-jf4VqPieczraGoeazG-UG9RoT8oBQencp6KRNJ6ZO6C24QPVsOoccRSQ_DAW9278yHGXsivdP6ShRvMeKt_ic_F-bXs1ssA.lfHi_zSoO1vdFWwGH66oMGGF2Svgdxl17FVGnSIaBFw" ], "X-Content-Type-Options": [ "nosniff" @@ -68,14 +68,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:46:37 GMT" + "Fri, 15 May 2015 23:40:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -83,7 +83,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -101,22 +101,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14971" ], "x-ms-request-id": [ - "4ec69cd6-7ef1-4b0d-b562-3e846541dece" + "d3e8b782-9071-4014-b584-ca741c2caa02" ], "x-ms-correlation-request-id": [ - "4ec69cd6-7ef1-4b0d-b562-3e846541dece" + "d3e8b782-9071-4014-b584-ca741c2caa02" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194636Z:4ec69cd6-7ef1-4b0d-b562-3e846541dece" + "WESTUS:20150515T234048Z:d3e8b782-9071-4014-b584-ca741c2caa02" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:46:36 GMT" + "Fri, 15 May 2015 23:40:47 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -131,8 +131,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -140,7 +140,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "594" @@ -158,22 +158,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14970" ], "x-ms-request-id": [ - "b6c5fdea-4e3f-41fc-9056-b9ca645ad9d9" + "3e2ddcd1-1d0d-4d95-a529-812da0d24ab1" ], "x-ms-correlation-request-id": [ - "b6c5fdea-4e3f-41fc-9056-b9ca645ad9d9" + "3e2ddcd1-1d0d-4d95-a529-812da0d24ab1" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194639Z:b6c5fdea-4e3f-41fc-9056-b9ca645ad9d9" + "WESTUS:20150515T234051Z:3e2ddcd1-1d0d-4d95-a529-812da0d24ab1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:46:39 GMT" + "Fri, 15 May 2015 23:40:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -188,8 +188,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -197,10 +197,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -212,13 +212,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS5n1gIKpvuVz70gIQwT3GyktIuQo1lHcmSA2GJAH2A=" + "3YDvl4w1xxnS9UxO4Rrmc5+MOBTWBKL8fvqWYxPh/i0=" ], "request-id": [ - "496fc03e-9aa4-4525-bc93-4d83edb1c151" + "9bbb1c38-1fdb-4446-a26f-a7091e1134dc" ], "client-request-id": [ - "002252a7-fbd8-46cf-960c-8e44a40244c4" + "db9bca15-9320-4591-ad65-e9ef060a27ba" ], "x-ms-gateway-rewrite": [ "false" @@ -227,7 +227,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "jqp2PzJi15qH34LvJ293grmjZYg1fFIfalkTpj_A23a0sdLiplWeiEMi3V0kCkip3fIVMEq7tYn3ZVYGFdid7GqRPLHRLU9JLpi_9WK1BFoM3szwABJhvc_5eV4Skd43.Fc6UAvk11uJRv--nU4jx-Hk9x566a5rbblkg3PAzBcs" + "kk7WLeddlc4Zjpr_ahBECEtDmePisxXpg4lIG_c3paHwPHvanJwFgYT_kybRj4WntRyv66qPg6kyTXKloNhC0Rko83_pKl2B-bZpbt5U13Q2vpwZgM4dvFQxHvGl5HLn-mRsRBJCugI89CaoEk8Ppg.5_EedKQ27XEUoDakiBVQhbOIJOOcKZ5ha4EeAlYONcc" ], "X-Content-Type-Options": [ "nosniff" @@ -255,14 +255,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:46:37 GMT" + "Fri, 15 May 2015 23:40:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -270,10 +270,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -285,13 +285,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "gqiNgf5NlZ7CoKlKn6ksAAz0DY2Obmmx+EN7hzvHgo4=" + "PsdA7PkyAvi9ISC2/j5GADuk5Hlkgp7V82CwYNLGNR4=" ], "request-id": [ - "880ee482-ab1e-4515-a909-fb96c31c330f" + "8ed10cc7-491d-422a-8aaa-a3d13aced5d3" ], "client-request-id": [ - "f92d7af8-a13d-4852-8734-49f34a38acbb" + "eb369cdb-59ea-4efd-8528-18f0162a0aa3" ], "x-ms-gateway-rewrite": [ "false" @@ -300,7 +300,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "iaryTtDEDE_6--QPM5mRSCrMxzLV3Gsc7GGniCHe5gH_6KJML8EzQLmce9Q3B0wbMm6PswrFbx01zynyKuMO1r-EJbfCf2ruyGDdDokyU5DVFqpX7OT9e85IsqwD2yVD.z_OB7bMdHv4oQ2t7f_NKeXryemzCz2e4iwhwqIqYGPo" + "E90iMJKdcVYF5ohNQROEyKsItuWnrvvs_-tZpTzF_IzNoW4RtWxWI5-fAOP6LZpD2oNfjteEu-JgOWdlZ9W0UntH6qqhgks9W2agYBgMeFyJcvWk_bGQRSzWcNM1ochdGRP8oYNC5fj2EWFdsqd5aQ.sH9uavYCX9PdpVv7W2LA_AMsVzb3QqeUx3NLOgDxZVc" ], "X-Content-Type-Options": [ "nosniff" @@ -328,14 +328,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:46:40 GMT" + "Fri, 15 May 2015 23:40:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -343,10 +343,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -358,13 +358,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "dS5n1gIKpvuVz70gIQwT3GyktIuQo1lHcmSA2GJAH2A=" + "3YDvl4w1xxnS9UxO4Rrmc5+MOBTWBKL8fvqWYxPh/i0=" ], "request-id": [ - "93a80b26-dc08-4b5a-94e2-9b8353129bcb" + "5535aae8-3452-499f-8323-56071246f5d3" ], "client-request-id": [ - "de2d888b-4019-4107-9d5d-000e402ee294" + "5573fde3-01fa-428c-b566-a06472084f21" ], "x-ms-gateway-rewrite": [ "false" @@ -373,7 +373,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "TsY_o3smwjkbgxxVS0FwVptfVRs3c0a3L4-dOo1hpPOA5mXWoWVhldwAnzbCxkh-X8DikalNo35izNT2rASTike_FYJzHynB8Ul9poml3zogvi8Feoq8JdpsIMNK5Toj.RMSGRYuQ52YURjh11gK-bT0LUcauJYuszY1T7VqtyXg" + "EVj_Up8D7nBpAO6qyXd963JJdUaFdPEDtLj6NO6fAy68YDRlQupt8Ibtr96NmoYTkShIXqAX-uoFkG5_o2C_ywyr2dVoduizs9dmknC1gceFh1Bmi5p8cvS3kD1DEI5_kh0MF_E2nsDiAM_3pvzDwg.wRbxDifNKVJ3igFO2ysMz9XOHNu6P-NU8GO60XGEKvg" ], "X-Content-Type-Options": [ "nosniff" @@ -401,16 +401,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:46:40 GMT" + "Fri, 15 May 2015 23:40:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -422,7 +422,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "594" @@ -440,22 +440,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1180" ], "x-ms-request-id": [ - "988e8448-2622-4930-a736-28f5da639a9c" + "f6ddaf8c-785c-40ce-8e99-0aa4790bbfaa" ], "x-ms-correlation-request-id": [ - "988e8448-2622-4930-a736-28f5da639a9c" + "f6ddaf8c-785c-40ce-8e99-0aa4790bbfaa" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194639Z:988e8448-2622-4930-a736-28f5da639a9c" + "WESTUS:20150515T234050Z:f6ddaf8c-785c-40ce-8e99-0aa4790bbfaa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:46:38 GMT" + "Fri, 15 May 2015 23:40:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -470,10 +470,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -485,7 +485,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -503,22 +503,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1179" ], "x-ms-request-id": [ - "db34d540-ca88-4dbc-a2fe-f0fc0e5bd65b" + "87d750ab-f429-461b-b061-3ffa05c87edb" ], "x-ms-correlation-request-id": [ - "db34d540-ca88-4dbc-a2fe-f0fc0e5bd65b" + "87d750ab-f429-461b-b061-3ffa05c87edb" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194640Z:db34d540-ca88-4dbc-a2fe-f0fc0e5bd65b" + "WESTUS:20150515T234051Z:87d750ab-f429-461b-b061-3ffa05c87edb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:46:39 GMT" + "Fri, 15 May 2015 23:40:51 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -535,12 +535,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "User": "divyag@ntdev.microsoft.com", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyBySPN.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyBySPN.json index 89e1b79309bf..60fe7785308f 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyBySPN.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyBySPN.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/applications?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9hcHBsaWNhdGlvbnM/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/applications?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC9hcHBsaWNhdGlvbnM/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"availableToOtherTenants\": false,\r\n \"displayName\": \"adApplication9126\",\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"identifierUris\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ]\r\n}", + "RequestBody": "{\r\n \"availableToOtherTenants\": false,\r\n \"displayName\": \"adApplication3559\",\r\n \"homepage\": \"http://adApplication3559/home\",\r\n \"identifierUris\": [\r\n \"http://adApplication3559/home\"\r\n ],\r\n \"replyUrls\": [\r\n \"http://adApplication3559/home\"\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -16,7 +16,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.Application/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.Application\",\r\n \"objectType\": \"Application\",\r\n \"objectId\": \"37e4fda4-204a-4c9a-8e6b-5a4022851e42\",\r\n \"softDeletionTimestamp\": null,\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"availableToOtherTenants\": false,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"identifierUris\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"keyCredentials\": [],\r\n \"knownClientApplications\": [],\r\n \"logoutUrl\": null,\r\n \"passwordCredentials\": [],\r\n \"oAuth2AllowImplicitFlow\": false,\r\n \"oAuth2AllowUrlPathMatching\": false,\r\n \"oAuth2RequirePostResponse\": false,\r\n \"publicClient\": null,\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"requiredResourceAccess\": [],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.Application/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.Application\",\r\n \"objectType\": \"Application\",\r\n \"objectId\": \"69964feb-5509-4eb9-a96c-cc13ba453ab8\",\r\n \"softDeletionTimestamp\": null,\r\n \"appId\": \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\",\r\n \"appMetadata\": null,\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication3559 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication3559\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"edfc8431-0627-4ad6-a3be-f367b18794e7\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication3559 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication3559\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"availableToOtherTenants\": false,\r\n \"displayName\": \"adApplication3559\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication3559/home\",\r\n \"identifierUris\": [\r\n \"http://adApplication3559/home\"\r\n ],\r\n \"keyCredentials\": [],\r\n \"knownClientApplications\": [],\r\n \"logoutUrl\": null,\r\n \"passwordCredentials\": [],\r\n \"oAuth2AllowImplicitFlow\": false,\r\n \"oAuth2AllowUrlPathMatching\": false,\r\n \"oAuth2RequirePostResponse\": false,\r\n \"publicClient\": null,\r\n \"replyUrls\": [\r\n \"http://adApplication3559/home\"\r\n ],\r\n \"requiredResourceAccess\": [],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1545" @@ -31,13 +31,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "PsdA7PkyAvi9ISC2/j5GADuk5Hlkgp7V82CwYNLGNR4=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "3de7ebeb-600f-4a63-880c-53420a7b68e3" + "95e6d5b7-36aa-4490-85c3-a4cc19a07afc" ], "client-request-id": [ - "f1c1fe29-f3d4-46e2-b15d-e88b5f9b54ea" + "71ef8781-89c5-4121-a3af-6c72b2d0fc1c" ], "x-ms-gateway-rewrite": [ "false" @@ -46,7 +46,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "MfIqeFwv2WWWTGvhvjI5GhemqSuPNyTG9KC4KXTYayO6nYNNCC3LAuWg4QK5gQ-66pgiWlfaWbGfj-GrTclKWurZ1PgTrzm3KOUVxYcTGE-QXbNM0f8l1rR6Mdp44dMkKML1b9bUsaZgsP33IKwACQ.UHgOeDcyYmSsd1IsKO710z5VohA9FM3V5weusTomIHI" + "l7_BARPCJbBBAcQImn8Rm26wZ9kA2jWnkizf3ROpNOnDBS8cyDCX-gWODGUlREFONQrxaY145l6ZujB3UsTdrE46_jJ96eNLajnUeUm334lj9xmmfm_hkKqXFZExArfTA7Snz_85YTtitB20g-803A.eZ5fMLRF-mBPfSLfP4XTEjJrlrZ15IM4RR-TQHo0qlc" ], "X-Content-Type-Options": [ "nosniff" @@ -64,7 +64,7 @@ "no-cache" ], "Location": [ - "https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/directoryObjects/37e4fda4-204a-4c9a-8e6b-5a4022851e42/Microsoft.WindowsAzure.ActiveDirectory.Application" + "https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/directoryObjects/69964feb-5509-4eb9-a96c-cc13ba453ab8/Microsoft.WindowsAzure.ActiveDirectory.Application" ], "Server": [ "Microsoft-IIS/8.5" @@ -77,16 +77,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:20 GMT" + "Fri, 15 May 2015 23:35:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/servicePrincipals?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC9zZXJ2aWNlUHJpbmNpcGFscz9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"accountEnabled\": true\r\n}", + "RequestBody": "{\r\n \"appId\": \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\",\r\n \"accountEnabled\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -98,10 +98,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cd85b08e-87ca-4402-b465-19508c859281\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication3559\",\r\n \"appId\": \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication3559 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication3559\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"edfc8431-0627-4ad6-a3be-f367b18794e7\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication3559 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication3559\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication3559\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication3559/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Default Directory\",\r\n \"replyUrls\": [\r\n \"http://adApplication3559/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\",\r\n \"http://adApplication3559/home\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1642" + "1650" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -113,13 +113,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" + "R1+xCOqrBsexJPMxtV0MNJLhsxNKpRCxYbIf34S61pM=" ], "request-id": [ - "b6d8e406-c124-4c09-a867-d82ffdbb0df7" + "65cf8a05-d821-49b6-be9c-487330cad89d" ], "client-request-id": [ - "6d1a3e60-754b-414e-af6b-21e824cd5636" + "02ffec00-769b-469f-92a0-6c4cd555241e" ], "x-ms-gateway-rewrite": [ "false" @@ -128,7 +128,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "ukgBpude2hsohVpudEvYR_fgYJD8hTIPdsj7BY5rQSoXOjv4jDPbolAcUI0Db1n78OmkqL6CBBSqqqsPNriVuCHRVgl0Xrk4bjfeOIu5ocN98mcBol865yFgFkZBc5ONCRSbM9rom6kkPfAjMndTZA.F-LJzf0tNrwOdrh2jhJaoT6kfS3wPhwIErbBn8r34oM" + "YE2-nknUSoXhvuKK5HZJp9Imreo3WZCthY2t4SQ3rCbrYIozBltEl-8AoHFlvLw_POY9s3n-q-tmAcSyGuU4caiq9LBXFzsD363RBGQyeBPpytj6gXCrFv5-SQuCCqN7cR54RyspxODPJSJEYbsHKA.ag1Y_uS3_G3LnkqjBLa8dD9IePyNQspafrRVdj-7H8c" ], "X-Content-Type-Options": [ "nosniff" @@ -146,7 +146,7 @@ "no-cache" ], "Location": [ - "https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/directoryObjects/f2e32fa3-5ca1-4235-8ab4-796b75312872/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal" + "https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/directoryObjects/cd85b08e-87ca-4402-b465-19508c859281/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal" ], "Server": [ "Microsoft-IIS/8.5" @@ -159,14 +159,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:21 GMT" + "Fri, 15 May 2015 23:35:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -174,7 +174,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -192,22 +192,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-request-id": [ - "272a21ee-9ee9-4110-ad70-c7075e73987f" + "f4ec46ed-a30e-4d1d-9e07-e44108b22716" ], "x-ms-correlation-request-id": [ - "272a21ee-9ee9-4110-ad70-c7075e73987f" + "f4ec46ed-a30e-4d1d-9e07-e44108b22716" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195122Z:272a21ee-9ee9-4110-ad70-c7075e73987f" + "WESTUS:20150515T233557Z:f4ec46ed-a30e-4d1d-9e07-e44108b22716" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:51:22 GMT" + "Fri, 15 May 2015 23:35:57 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -222,8 +222,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -231,7 +231,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"cd85b08e-87ca-4402-b465-19508c859281\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "596" @@ -249,22 +249,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "f4836f5b-e612-49ae-93e4-10e6ee6c045e" + "b9517468-9803-4b2b-9f80-0ee0943d2667" ], "x-ms-correlation-request-id": [ - "f4836f5b-e612-49ae-93e4-10e6ee6c045e" + "b9517468-9803-4b2b-9f80-0ee0943d2667" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195125Z:f4836f5b-e612-49ae-93e4-10e6ee6c045e" + "WESTUS:20150515T233601Z:b9517468-9803-4b2b-9f80-0ee0943d2667" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:51:24 GMT" + "Fri, 15 May 2015 23:36:01 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -279,8 +279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'http:%2F%2FadApplication9126%2Fhome')&api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnaHR0cCUzQSUyRiUyRmFkQXBwbGljYXRpb245MTI2JTJGaG9tZScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'http:%2F%2FadApplication3559%2Fhome')&api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnaHR0cCUzQSUyRiUyRmFkQXBwbGljYXRpb24zNTU5JTJGaG9tZScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -288,10 +288,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication9126/home\",\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cd85b08e-87ca-4402-b465-19508c859281\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication3559\",\r\n \"appId\": \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication3559 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication3559\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"edfc8431-0627-4ad6-a3be-f367b18794e7\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication3559 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication3559\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication3559\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication3559/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Default Directory\",\r\n \"replyUrls\": [\r\n \"http://adApplication3559/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication3559/home\",\r\n \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1645" + "1653" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -303,13 +303,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "PsdA7PkyAvi9ISC2/j5GADuk5Hlkgp7V82CwYNLGNR4=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "7a05b0c2-1908-4394-964c-9376f409e32d" + "b615a4d1-4207-490d-91ea-1d2f9526b0a0" ], "client-request-id": [ - "da4cacfa-6a57-4d50-8232-a5407b88054b" + "f43b376a-334c-49e1-873e-8bdff1029972" ], "x-ms-gateway-rewrite": [ "false" @@ -318,7 +318,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "q-jX9cXHoOQNx1XWn5GOnZ6lhbXmsh12oD8HTUG6LpfEI3OsHNafz8vj9e4gJH_mrOkRklbZOCNKxfchFrPj-GZYVmTZyJCgrlYc0Ow7VvagawL9SsxygQg33njVIUCHbsjRFwIQW-QwQtiuce-USw.q2o_Rn5c_4y_5wGrSwCtSeQTs3I-Ejs5f5TwOIwR2gw" + "3JYi-DX-nZM93jYBcLS0DjDqR9eLCUZOpVpQPChlmkN-ZNOSqJF3AcXP9Z8H_LxCezewAEroHDiG8xx9CgWXXVlb2DiiLt61XT1q7wdTZP3H6vhfpwZso-vKFznRFv8XRY14qAy5lP1irrshSzgBaw.L53iGS4ED6aUEApr5pKQTc_aAaPF_H81Bn_f44HwOdI" ], "X-Content-Type-Options": [ "nosniff" @@ -346,14 +346,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:22 GMT" + "Fri, 15 May 2015 23:35:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'http:%2F%2FadApplication9126%2Fhome')&api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnaHR0cCUzQSUyRiUyRmFkQXBwbGljYXRpb245MTI2JTJGaG9tZScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'http:%2F%2FadApplication3559%2Fhome')&api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC9zZXJ2aWNlUHJpbmNpcGFscz8kZmlsdGVyPXNlcnZpY2VQcmluY2lwYWxOYW1lcy9hbnkoYzpjJTIwZXElMjAnaHR0cCUzQSUyRiUyRmFkQXBwbGljYXRpb24zNTU5JTJGaG9tZScpJmFwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -361,10 +361,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication9126/home\",\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cd85b08e-87ca-4402-b465-19508c859281\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication3559\",\r\n \"appId\": \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication3559 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication3559\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"edfc8431-0627-4ad6-a3be-f367b18794e7\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication3559 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication3559\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication3559\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication3559/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Default Directory\",\r\n \"replyUrls\": [\r\n \"http://adApplication3559/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication3559/home\",\r\n \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1645" + "1653" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -376,13 +376,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" + "L1T5XHZYGeFZQeobDtqw4Vyk5Majkvn9aCYas2qZMLw=" ], "request-id": [ - "e5a20770-d041-4327-9b45-fd3171019de2" + "71b61d18-4090-4ad8-aca2-9731e529146d" ], "client-request-id": [ - "81b3e49b-95ef-48c1-b569-b6c8208ecdf5" + "50b37574-5520-45cd-9b13-080b36dee91b" ], "x-ms-gateway-rewrite": [ "false" @@ -391,7 +391,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "9EANuVBSlfl2YZUKarFzFe56RZQ3pMyjuuKGF98I0mk0dI1kVb39q_DcAqMLxEeLOHLPnsc8xgFWzDx7TMBxPpm1bwiDsK3DZR86bTJ678MFINBhPNWCKR1BCu8YyFfHuaw-lw0C8YXgNlPChHvM7w.4Gb0wUok4UJjpd-xBblCY09OD2RbOPLk2ZOiCoE4Jp8" + "vgaOJbC-kbPUJRsyay0IcKkQIYIVeaZ8Mbebt69GqYQXir-r7Gz3iWVZFUqGmerTfo2V-uyc0q0xOyGJQxwH4XNoCF7L7Cq_ITd71ACiL853BroIAN0NC5m47xTZTJsbfhkOI7RM4QAc-m1Ch3JRsw.VE6JAvsQ9LaMAC43CgikaMGx-VtTJXR1B7hJokxhtS8" ], "X-Content-Type-Options": [ "nosniff" @@ -419,16 +419,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:25 GMT" + "Fri, 15 May 2015 23:36:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"cd85b08e-87ca-4402-b465-19508c859281\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -440,7 +440,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"cd85b08e-87ca-4402-b465-19508c859281\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\",\r\n \"list\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "596" @@ -458,22 +458,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "895b0c97-7d8c-450f-bb4b-b8afa157297c" + "c17d8c15-0d31-4001-bb34-e9a124192eb1" ], "x-ms-correlation-request-id": [ - "895b0c97-7d8c-450f-bb4b-b8afa157297c" + "c17d8c15-0d31-4001-bb34-e9a124192eb1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195124Z:895b0c97-7d8c-450f-bb4b-b8afa157297c" + "WESTUS:20150515T233600Z:c17d8c15-0d31-4001-bb34-e9a124192eb1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:51:23 GMT" + "Fri, 15 May 2015 23:36:00 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -488,10 +488,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -503,7 +503,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -521,22 +521,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "c314a35f-7e4b-4df2-bea0-af82c17302c3" + "8ba09c02-1f53-43c8-b946-695ad5ecd2f2" ], "x-ms-correlation-request-id": [ - "c314a35f-7e4b-4df2-bea0-af82c17302c3" + "8ba09c02-1f53-43c8-b946-695ad5ecd2f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150513T195126Z:c314a35f-7e4b-4df2-bea0-af82c17302c3" + "WESTUS:20150515T233601Z:8ba09c02-1f53-43c8-b946-695ad5ecd2f2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:51:26 GMT" + "Fri, 15 May 2015 23:36:01 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/f2e32fa3-5ca1-4235-8ab4-796b75312872?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9mMmUzMmZhMy01Y2ExLTQyMzUtOGFiNC03OTZiNzUzMTI4NzI/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/cd85b08e-87ca-4402-b465-19508c859281?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9jZDg1YjA4ZS04N2NhLTQ0MDItYjQ2NS0xOTUwOGM4NTkyODE/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -560,7 +560,7 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Request_ResourceNotFound\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Resource 'f2e32fa3-5ca1-4235-8ab4-796b75312872' does not exist or one of its queried reference-property objects are not present.\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Request_ResourceNotFound\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Resource 'cd85b08e-87ca-4402-b465-19508c859281' does not exist or one of its queried reference-property objects are not present.\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "214" @@ -569,13 +569,13 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "ocp-aad-diagnostics-server-name": [ - "QBKI9AbEYiPcuPxP6tzpZblINiB8xjSfl91MBr8+PRQ=" + "iYdxC4//s1JYk40t8P7wp4F402LFHd9cy7lmjVT3g6E=" ], "request-id": [ - "a7d43a99-a6cb-4806-9bad-67b8ca3a1e6e" + "525f096e-3923-44ca-81cf-a96d7a36cf1c" ], "client-request-id": [ - "6fcc1e15-8e01-480d-8cbd-2b80debc3882" + "28d5c055-9e46-4395-8d4c-823a939016c1" ], "x-ms-gateway-rewrite": [ "false" @@ -584,7 +584,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "8Ds4yQaDUiNk2w0z3vyEznubCyfetmFLAC2IUknCLD4DkKdv3ss8UjpAHNR-D1tyUVe1hzkfOrcRIN0Vx4JTZDu4SyeZKYyxnn9WgqdCO9lXculg5lyT1PnF1C0rsz51-ZZn2YSt0Q63NDCvQNNihQ.JXz5rx--dp4ACKjahGzdtNVC8DCA0cJOFjTx3lT1jq0" + "a_gXJn5rRD6u3iGbwsT8lkR5-304DZ4nq8ztue5McESX2Zs_TYAhnvweN0wKoOWLbIjYJdDyI2ZnNG8S43VYvA7i9Ing4PSWt7qql-kSPA4NbAkG41CFlhyRsFMx2ScqQczfR_-e3HWQBOdLeIoV-g.ZWYYQa4WFSVrpwDg93kdgrOtBJFEaBtRyCY_SqT7qnc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,14 +606,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:24 GMT" + "Fri, 15 May 2015 23:36:00 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals/f2e32fa3-5ca1-4235-8ab4-796b75312872?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscy9mMmUzMmZhMy01Y2ExLTQyMzUtOGFiNC03OTZiNzUzMTI4NzI/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/servicePrincipals/cd85b08e-87ca-4402-b465-19508c859281?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC9zZXJ2aWNlUHJpbmNpcGFscy9jZDg1YjA4ZS04N2NhLTQ0MDItYjQ2NS0xOTUwOGM4NTkyODE/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,10 +621,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication9126/home\",\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cd85b08e-87ca-4402-b465-19508c859281\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication3559\",\r\n \"appId\": \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication3559 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication3559\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"edfc8431-0627-4ad6-a3be-f367b18794e7\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication3559 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication3559\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication3559\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication3559/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Default Directory\",\r\n \"replyUrls\": [\r\n \"http://adApplication3559/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication3559/home\",\r\n \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1642" + "1650" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -636,13 +636,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "R1+xCOqrBsexJPMxtV0MNJLhsxNKpRCxYbIf34S61pM=" + "fhlmJNLYPnp764O9rf98r+032N8xEbAipKeUghbHIVU=" ], "request-id": [ - "0cabd24e-9e62-4231-b9e8-2a8ab519a080" + "e5700e22-1811-4be7-8bef-349aeafae387" ], "client-request-id": [ - "be3d0e1e-1981-4183-9847-648aa6db9a57" + "6e35a751-f912-45cf-88f1-df7b6f42c52d" ], "x-ms-gateway-rewrite": [ "false" @@ -651,7 +651,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "kbz8A-3dxg-YX-YI7dTqOcNbgAMeZh63UHW3Ab0S5Va7YZFLb_BFrEot1EJVEVQrGcEXMf0FBJUvlmWsIWSuvr9VWvvlU4lTVg_LpeRqONZTIlLdPx0iiBwm4a8ofvP7dN1euLG23nJU8Am62MtGdg.amZhWU7bWKjvNqP8gd5ydc-RnfoD0DrU__qlCdanxNA" + "ylWrwVYqVQeVYMGbA09lMxyVdncsmYfTmGOZ25loTP0PJvbbBfAZr-D1gEK-6CZBxtEKVSi4m_ygHFdbuqIgCdI0QwibU_HOp2-a5XKMYJaJywj7RMsiC_lPaUriXdES_hfdd3Ko7N7A_ujbD-n1Jw.W1ii732_rpmkTPeeZNUSM8BccrSZdnb0QBYbXDH_c_M" ], "X-Content-Type-Options": [ "nosniff" @@ -679,14 +679,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:24 GMT" + "Fri, 15 May 2015 23:36:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals/f2e32fa3-5ca1-4235-8ab4-796b75312872?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscy9mMmUzMmZhMy01Y2ExLTQyMzUtOGFiNC03OTZiNzUzMTI4NzI/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/servicePrincipals/cd85b08e-87ca-4402-b465-19508c859281?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC9zZXJ2aWNlUHJpbmNpcGFscy9jZDg1YjA4ZS04N2NhLTQ0MDItYjQ2NS0xOTUwOGM4NTkyODE/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,10 +694,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2e32fa3-5ca1-4235-8ab4-796b75312872\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication9126\",\r\n \"appId\": \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication9126 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication9126\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"dfcc1298-43cb-4205-9914-de36406f0650\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication9126 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication9126\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication9126\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication9126/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"http://adApplication9126/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication9126/home\",\r\n \"cd2be828-0c37-414a-8e9c-bb1b9e417a1d\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cd85b08e-87ca-4402-b465-19508c859281\",\r\n \"softDeletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"appDisplayName\": \"adApplication3559\",\r\n \"appId\": \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\",\r\n \"appMetadata\": null,\r\n \"appOwnerTenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"appPermissions\": [\r\n {\r\n \"claimValue\": \"user_impersonation\",\r\n \"description\": \"Allow the application to access adApplication3559 on behalf of the signed-in user.\",\r\n \"directAccessGrantTypes\": [],\r\n \"displayName\": \"Access adApplication3559\",\r\n \"impersonationAccessGrantTypes\": [\r\n {\r\n \"impersonated\": \"User\",\r\n \"impersonator\": \"Application\"\r\n }\r\n ],\r\n \"isDisabled\": false,\r\n \"origin\": \"Application\",\r\n \"permissionId\": \"edfc8431-0627-4ad6-a3be-f367b18794e7\",\r\n \"resourceScopeType\": \"Personal\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication3559 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication3559\",\r\n \"lang\": null\r\n }\r\n ],\r\n \"authenticationPolicy\": null,\r\n \"displayName\": \"adApplication3559\",\r\n \"errorUrl\": null,\r\n \"explicitAccessGrantRequired\": false,\r\n \"homepage\": \"http://adApplication3559/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"microsoftFirstParty\": null,\r\n \"passwordCredentials\": [],\r\n \"publisherName\": \"Default Directory\",\r\n \"replyUrls\": [\r\n \"http://adApplication3559/home\"\r\n ],\r\n \"resourceApplicationSet\": null,\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication3559/home\",\r\n \"30eeb4ec-b99e-449b-8eb6-7cbe2f0ca5fd\"\r\n ],\r\n \"tags\": [],\r\n \"webApi\": null,\r\n \"webApp\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1642" + "1650" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -709,13 +709,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" + "R1+xCOqrBsexJPMxtV0MNJLhsxNKpRCxYbIf34S61pM=" ], "request-id": [ - "2325e224-3805-400a-9a0f-571ebe4464ae" + "806181ef-3e92-4f91-80d3-11e9dfad0eac" ], "client-request-id": [ - "55ea52e9-2d63-4905-b311-7ae6862d7544" + "24aaff53-5b77-44f1-916f-7c9208282c8f" ], "x-ms-gateway-rewrite": [ "false" @@ -724,7 +724,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "mn6Kp5sP9zl3k0_KNAHVLXt0j12pccQgt54bUsI8NvdjTJeWSmjTPQ9c6lPsei-7fboHQ1qIJu0C9S1ZgV_LMo1YtaAKyqDfsdHuA9_cNJDbhWkf7JIXhQvDiIr0ZxU-0bQyNSq9zAUpfisGFxO0UQ.iA3IRt_QuZZoklaTypSS9IKeOVtYyVRFjxGopFuokA0" + "e-yhO7cNReUVUx9wqblBHQWt-21H1NA3KSoR4VKoHCJphXU779FxS_Dzqo4hWB-y05bJnDCK04Mnlzb7UO_aQTXlzYYBQirG-W3VF-FeCfL4EqNRaB2SEyUxJdI-7XtYzMW_ccJ9_s7zFvF9W3Cafw.fcmfnEFcviYNVlEARy5ElmZGbeD5ylcEnFwwj_HalVo" ], "X-Content-Type-Options": [ "nosniff" @@ -752,14 +752,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:24 GMT" + "Fri, 15 May 2015 23:36:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/servicePrincipals/f2e32fa3-5ca1-4235-8ab4-796b75312872?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9zZXJ2aWNlUHJpbmNpcGFscy9mMmUzMmZhMy01Y2ExLTQyMzUtOGFiNC03OTZiNzUzMTI4NzI/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/servicePrincipals/cd85b08e-87ca-4402-b465-19508c859281?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC9zZXJ2aWNlUHJpbmNpcGFscy9jZDg1YjA4ZS04N2NhLTQ0MDItYjQ2NS0xOTUwOGM4NTkyODE/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,13 +776,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VfUsEwfVIt6kKxw4w3DIj7NdfHZq0I7s9UKQB+zebI0=" + "fhlmJNLYPnp764O9rf98r+032N8xEbAipKeUghbHIVU=" ], "request-id": [ - "2b926e82-ff05-44dc-a0a2-04e350c344c9" + "be72215f-9930-4ea9-acfd-d98cab2bc11d" ], "client-request-id": [ - "111b46fc-f7a6-4ce0-8921-81ae42585b97" + "f7c4c7e4-f7a0-4f77-ab0c-cf87746e7bdd" ], "x-ms-gateway-rewrite": [ "false" @@ -791,7 +791,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "ynSW2GuhoVRMIZp3pM3sw3SgxwQxkw1-md4Ja7zYMDuS5rAriEWfBq9_uVWaC7b47rs4WN-wE_xVGQGBNX_HBZUJA2-djDU3t2PRc1DhdAbifRPzzABtzbuJ-hXtBycNk2a1rpmZDXLbVHtZQ40HAQ.GBJ4onkWbcd3bFdSqafVBxmbgZMNu09d_H2X_gqBCe8" + "9GxBXuKH7ZXBuX3aJ83b6uca-kv9f7iudBpkgxQSFZYxWeVzOmDDdCUxONguQs4LVkuDCYFW9_bybKUGkji-iJFnKfG5MYzNRXZY47uBJEL4TibeUG3nkL53xuiT_9WMc22KoFOxK_DuCzn_cUOzcQ.EwfkUl4xSbEiAe8E-S1ckw_G9Zu5bqZSkT7_nX2YI04" ], "X-Content-Type-Options": [ "nosniff" @@ -819,14 +819,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:25 GMT" + "Fri, 15 May 2015 23:36:01 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/applications/37e4fda4-204a-4c9a-8e6b-5a4022851e42?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9hcHBsaWNhdGlvbnMvMzdlNGZkYTQtMjA0YS00YzlhLThlNmItNWE0MDIyODUxZTQyP2FwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/applications/69964feb-5509-4eb9-a96c-cc13ba453ab8?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC9hcHBsaWNhdGlvbnMvNjk5NjRmZWItNTUwOS00ZWI5LWE5NmMtY2MxM2JhNDUzYWI4P2FwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -846,10 +846,10 @@ "fhlmJNLYPnp764O9rf98r+032N8xEbAipKeUghbHIVU=" ], "request-id": [ - "5c4471bd-3419-4730-b12f-77e5e0196d48" + "acd08b41-df1b-46c1-816b-5261df3b1f1c" ], "client-request-id": [ - "a228f8d3-2976-4821-ae49-5b997fe51a5d" + "2b684e16-d478-49da-9886-0ee5b519772a" ], "x-ms-gateway-rewrite": [ "false" @@ -858,7 +858,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "e8KJgxjFgbLUgOTL_lfu4u_VTB-bUEfWt9xgnTtht86c2ifoYmOym7XxuESvetJsQeR-UuKu_2Tm_71-PCnp177_EVKWdx9NgzzJ-bI9Lqz6nRNFDxN4bH9uO8dGxoGGc8Dz05BufWqRma71RK1WEg.NPOYNkmCL58mAZXjZKuc1i6X6biuR5UtPihs4SL7j0Y" + "AGwoS7XGtSnP_oxy2frdzKeEAM46u3880KgK72kDxFh4MK_tBmFGodlPoQeeetEs3d8yduuHDLzRIDp1IxA3w1TqcSbGfo9PQv8AxpCRBAXXLajvdk7DR9iCvmRnRhCuKuQw-kEmsvzYG-vvkgmOnA.MR7yYWN7jN7m_RudRK0-DD6HN4CcMwAEz0S0iZp_7Is" ], "X-Content-Type-Options": [ "nosniff" @@ -886,7 +886,7 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:51:25 GMT" + "Fri, 15 May 2015 23:36:01 GMT" ] }, "StatusCode": 204 @@ -894,16 +894,16 @@ ], "Names": { "CreateNewAdApp": [ - "adApplication9126" + "adApplication3559" ] }, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com", - "User": "divyag@ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByUPN.json b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByUPN.json index 308274c575eb..f7bc85f726a3 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByUPN.json +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestSetRemoveAccessPolicyByUPN.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "469" @@ -28,22 +28,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14967" ], "x-ms-request-id": [ - "64f1f697-eb06-4744-afed-fc8c5c220648" + "2b01e46a-bc23-4657-83f9-8690794e1717" ], "x-ms-correlation-request-id": [ - "64f1f697-eb06-4744-afed-fc8c5c220648" + "2b01e46a-bc23-4657-83f9-8690794e1717" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194818Z:64f1f697-eb06-4744-afed-fc8c5c220648" + "WESTUS:20150515T233858Z:2b01e46a-bc23-4657-83f9-8690794e1717" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:48:17 GMT" + "Fri, 15 May 2015 23:38:57 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -58,8 +58,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "740" @@ -85,22 +85,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14966" ], "x-ms-request-id": [ - "e4c7ce86-9449-47b4-85cc-37564e0bf9dc" + "32e50948-ef1a-4310-9969-d79261cb4136" ], "x-ms-correlation-request-id": [ - "e4c7ce86-9449-47b4-85cc-37564e0bf9dc" + "32e50948-ef1a-4310-9969-d79261cb4136" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194821Z:e4c7ce86-9449-47b4-85cc-37564e0bf9dc" + "WESTUS:20150515T233901Z:32e50948-ef1a-4310-9969-d79261cb4136" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:48:20 GMT" + "Fri, 15 May 2015 23:39:00 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -115,8 +115,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -124,10 +124,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -139,13 +139,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "Oqko02haJxDTRhctK/G36gK387+J0M2ZgOrTBM5zf4M=" ], "request-id": [ - "5d308b35-b870-4b7e-a75d-f41b2108080b" + "3cd224fa-9298-431a-b12d-4c5d1087fcfd" ], "client-request-id": [ - "a328a390-6e6d-40d1-a3d3-83faf755f97a" + "4ea5e33a-2db8-432f-ad07-f201f5e58c5f" ], "x-ms-gateway-rewrite": [ "false" @@ -154,7 +154,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "kyrh_fvLhtNGef_rQ80ynyNmK6mMZvsCbRVIK_yNJlILht16hqC3Jy-n7-FOdDZZApHIohJZYAX0l9OR84c38E-kNtOsD83WVW4KD6dZ8JmmgWW4zSq6678oXk8MnOii.aXwzmutdCXStjl8-04eLypjGVTOhCGB67uXXKiDkbGE" + "sYheaGY_1xRNET7LhN74jS55LCX5FzppE612ETEm47jcLzJjwp5KP0TryLVpyVBwlH5MWF4ikHbbkvoaAenpSyoaSQEOyvHD7sm-m6sGizRTgfua6sh_X2yZHXzMOyQjDvDSXXzRhAqqHmwwFGjZ1g._WjrqpsoR4pWRlT5FPIzupGNqMt7-D_XGrbLtZ4iNRU" ], "X-Content-Type-Options": [ "nosniff" @@ -182,14 +182,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:48:17 GMT" + "Fri, 15 May 2015 23:38:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/divyag@ntdev.microsoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9kaXZ5YWdAbnRkZXYubWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0xLjQyLXByZXZpZXdJbnRlcm5hbA==", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/kvtest@yuhuizhotmail.onmicrosoft.com?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy9rdnRlc3RAeXVodWl6aG90bWFpbC5vbm1pY3Jvc29mdC5jb20/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -197,10 +197,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -212,13 +212,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "DY7TQaBcGBdxiyBwhXtHOCQG2f/I+ISxBVfzVwhFykU=" ], "request-id": [ - "124dafad-8321-406d-bf0c-812d2a307bb2" + "c0af0678-b787-47d1-8864-9746aada0cc5" ], "client-request-id": [ - "dedcf1c7-65ec-4408-bd22-0c04f3aef73c" + "b9cc5b29-f2f4-4425-b703-f03399ba7fa6" ], "x-ms-gateway-rewrite": [ "false" @@ -227,7 +227,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "3YfdXrxN34tBYEMR3MVUWSAOWYDft7vP30a2N-vGPmbGohOkq1wV1QCJlHirj1UwuZ1_H9HymgFEn9Q6Z4EK_HngQPkC3gNtcK_x75vMosFgdVE4vWBTRQ0mfkPKPmVd.QWFNXfxrhA-G7UTTGRTMaOCe_7QWLKy9bFSurbyMy_8" + "kyzI3srbpH9wQhOSYo48_peTuaKtmK6qxkxhNmiX3gLX74YTTip4Ovvd8ndofZ0UBl9Dt4zFGJTCY3GXsxIVq0ekYnTg9YXz62MZJxyrPxMm3CJeZm7GhUROZ77szw45xXn8_LF8y3OX6wM_0Jr6Bw.XQpgJ9sM87yKdj438LAstZQWgPgwYJV1rMBHKTAmcRM" ], "X-Content-Type-Options": [ "nosniff" @@ -255,16 +255,16 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:48:20 GMT" + "Fri, 15 May 2015 23:39:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"unwrapKey\",\r\n \"wrapKey\",\r\n \"verify\",\r\n \"sign\",\r\n \"get\",\r\n \"list\",\r\n \"update\",\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"secrets\": [\r\n \"get\",\r\n \"list\",\r\n \"set\",\r\n \"delete\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "740" @@ -294,22 +294,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1177" ], "x-ms-request-id": [ - "3d33969c-7241-4e7c-8bbb-74fba5dd87a4" + "e40547aa-babc-4fa1-95f8-b81684a06412" ], "x-ms-correlation-request-id": [ - "3d33969c-7241-4e7c-8bbb-74fba5dd87a4" + "e40547aa-babc-4fa1-95f8-b81684a06412" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194820Z:3d33969c-7241-4e7c-8bbb-74fba5dd87a4" + "WESTUS:20150515T233900Z:e40547aa-babc-4fa1-95f8-b81684a06412" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:48:19 GMT" + "Fri, 15 May 2015 23:38:59 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -324,10 +324,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018?api-version=2014-12-19-PREVIEW", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ1OWVmZTktYTBlNC00MDY2LTk3NzEtNzI1YjEwODM3ZTEwL3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzYwNDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MTAxOD9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", + "RequestUri": "/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489?api-version=2014-12-19-PREVIEW", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODYxOTM1ODEtYmI3Ni00NGE5LTkxMTAtOGNmNmRiY2JmZWE1L3Jlc291cmNlR3JvdXBzL3BzaHRlc3RyZzI2OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvcHNodGVzdHZhdWx0MjQ4OT9hcGktdmVyc2lvbj0yMDE0LTEyLTE5LVBSRVZJRVc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\",\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true\r\n },\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -339,7 +339,7 @@ "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d59efe9-a0e4-4066-9771-725b10837e10/resourceGroups/pshtestrg6041/providers/Microsoft.KeyVault/vaults/pshtestvault1018\",\r\n \"name\": \"pshtestvault1018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault1018.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86193581-bb76-44a9-9110-8cf6dbcbfea5/resourceGroups/pshtestrg2690/providers/Microsoft.KeyVault/vaults/pshtestvault2489\",\r\n \"name\": \"pshtestvault2489\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"Premium\"\r\n },\r\n \"tenantId\": \"71ecaf6c-7521-4953-ba5f-e55c260af004\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": true,\r\n \"vaultUri\": \"https://pshtestvault2489.vault.azure.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "447" @@ -357,22 +357,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1176" ], "x-ms-request-id": [ - "7704df0c-6251-4118-aed0-cfd17f8f1bfd" + "b8e92383-9ad6-4edf-9349-8988a0840f21" ], "x-ms-correlation-request-id": [ - "7704df0c-6251-4118-aed0-cfd17f8f1bfd" + "b8e92383-9ad6-4edf-9349-8988a0840f21" ], "x-ms-routing-request-id": [ - "WESTUS:20150513T194821Z:7704df0c-6251-4118-aed0-cfd17f8f1bfd" + "WESTUS:20150515T233901Z:b8e92383-9ad6-4edf-9349-8988a0840f21" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 13 May 2015 19:48:20 GMT" + "Fri, 15 May 2015 23:39:00 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -387,8 +387,8 @@ "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -396,10 +396,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -411,13 +411,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "7o7JCpvAMOsv7MtA28AXtuiWTyXc17omlletNDE/OUM=" + "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" ], "request-id": [ - "fdc362d8-197b-426c-9143-8928ab3c7537" + "a62b71b6-20e0-4117-8903-28e02aad09a1" ], "client-request-id": [ - "c707538a-34a1-458e-b611-a48decce3a44" + "645aedca-a509-4682-bea6-a1a24557946d" ], "x-ms-gateway-rewrite": [ "false" @@ -426,7 +426,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "Efw9MiwGtFTJe-Rddf3a7sCuUxJBGZq8n0QdIsyZgq2ZB5hc5UJYe6wzsijOn2SzvTBf235IR3EUnRNVXa_FiRFMJmTz01d_jAmdI6n5uQ1ldt_mp7GCGGtDY9fy_BEu.lh14P45U09l9NgirCHaPkuY1j8wbZHoKHWFkMT1g7JQ" + "5snCNpItrG3N21-1seQbxvMkpnZQaTGp48ow4H6Vg1Ndzw0GkF67I5QPhXIhh-kiofC9fNU5fLKb2E1KWHI0E745OXI_Nt99ZZQfb8EVQZ0O8Z7Mmpf9MDvZZD31I26zu4REnx0rmQwC2xtz-oxufA.KbZh0S9qYJ1MZ1bBezNClNYhzKF-bR09WpNni-EhZ2Q" ], "X-Content-Type-Options": [ "nosniff" @@ -454,14 +454,14 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:48:20 GMT" + "Fri, 15 May 2015 23:39:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/users/aa24144b-73c7-4e2c-8850-5c7ff869092f?api-version=1.42-previewInternal", - "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9hYTI0MTQ0Yi03M2M3LTRlMmMtODg1MC01YzdmZjg2OTA5MmY/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestUri": "/71ecaf6c-7521-4953-ba5f-e55c260af004/users/9a3042c3-fc03-4ee2-9930-7d48eb74563c?api-version=1.42-previewInternal", + "EncodedRequestUri": "LzcxZWNhZjZjLTc1MjEtNDk1My1iYTVmLWU1NWMyNjBhZjAwNC91c2Vycy85YTMwNDJjMy1mYzAzLTRlZTItOTkzMC03ZDQ4ZWI3NDU2M2M/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -469,10 +469,10 @@ "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa24144b-73c7-4e2c-8850-5c7ff869092f\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [\r\n {\r\n \"disabledPlans\": [\r\n \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\",\r\n \"43de0ff5-c92c-492b-9116-175376d08c38\",\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\",\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\",\r\n \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n ],\r\n \"skuId\": \"1392051d-0cb9-4b7a-88d5-621fee5e8711\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"0feaeb32-d00e-4d66-bd5a-43b5b83db82c\"\r\n ],\r\n \"skuId\": \"1fa9556c-c37f-44c5-9d9d-d326642b2885\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"ed659f76-ab99-414a-ab3b-70e96ab4dd8a\"\r\n },\r\n {\r\n \"disabledPlans\": [\r\n \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\",\r\n \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n ],\r\n \"skuId\": \"f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c\"\r\n },\r\n {\r\n \"disabledPlans\": [],\r\n \"skuId\": \"c5928f49-12ba-48f7-ada3-0d743a3601d5\"\r\n }\r\n ],\r\n \"assignedPlans\": [\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"e95bec33-7c88-4a70-8e19-b10bd9d0c014\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"Exchange\",\r\n \"servicePlanId\": \"efb87545-963c-4e0d-99df-69c6916d9eb0\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"5dbe027f-2339-4123-9542-606e4d348a72\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"43de0ff5-c92c-492b-9116-175376d08c38\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"RMSOnline\",\r\n \"servicePlanId\": \"bea4c11e-220a-4e6d-8eb8-8ea15d019f90\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-11-25T01:24:52Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftCommunicationsOnline\",\r\n \"servicePlanId\": \"27216c54-caf8-4d0d-97e2-517afb5c08f6\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"fe71d6c3-a2ea-4499-9778-da042bf08063\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"c4048e79-4474-4c74-ba9b-c31ff225e511\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"SharePoint\",\r\n \"servicePlanId\": \"2125cfd7-2110-4567-83c4-c1cd5275163d\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:18Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"PowerBI\",\r\n \"servicePlanId\": \"fc0a60aa-feee-4746-a0e3-aecfe81a38dd\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2014-06-03T16:46:17Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3\"\r\n },\r\n {\r\n \"assignedTimestamp\": \"2012-10-27T02:09:01Z\",\r\n \"capabilityStatus\": \"Enabled\",\r\n \"service\": \"MicrosoftOffice\",\r\n \"servicePlanId\": \"663a804f-1c30-4ff0-9915-9db84f0d1cea\"\r\n }\r\n ],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Application Platform\",\r\n \"dirSyncEnabled\": true,\r\n \"displayName\": \"Divya Gupta (KEY VAULT)\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": \"50\",\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": \"328731\",\r\n \"extensionAttribute5\": \"70317\",\r\n \"extensionAttribute6\": \"328731\",\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": \"/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": \"Provisioned by MIIS\",\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Divya\",\r\n \"immutableId\": \"328731\",\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SOFTWARE ENGINEER II\",\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": \"2015-05-10T04:00:56Z\",\r\n \"logonIdentifiers\": [],\r\n \"mail\": \"Divya.Gupta@microsoft.com\",\r\n \"mailNickname\": \"divyag\",\r\n \"mobile\": \"+14256985666\",\r\n \"netId\": \"10030000801BB9CF\",\r\n \"onPremiseSecurityIdentifier\": \"AQUAAAAAAAUVAAAAWVG4F2ZyXSVkYzsLEpc3AA==\",\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": \"3/2115\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": \"Divya.Gupta@microsoft.com\",\r\n \"provisionedPlans\": [\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftCommunicationsOnline\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"Exchange\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"SharePoint\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n },\r\n {\r\n \"capabilityStatus\": \"Enabled\",\r\n \"provisioningStatus\": \"Success\",\r\n \"service\": \"MicrosoftOffice\"\r\n }\r\n ],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"X500:/O=Nokia/OU=HUB/cn=Recipients/cn=divyag\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta2a78cac5\",\r\n \"X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divyag75d340ceb0\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Divya Gupta\",\r\n \"X500:/O=microsoft/ou=External (FYDIBOHF25SPDLT)/cn=Recipients/cn=17f21f59e72e4667821eb851f66e6cf9\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=divya.gupta_microsoft.com087728c5\",\r\n \"X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-divyag_dd5914cda5\",\r\n \"X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=divyag\",\r\n \"X500:/o=microsoft/ou=First Administrative Group/cn=Recipients/cn=divyag\",\r\n \"x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Divya Gupta\",\r\n \"smtp:DIVYAG@service.microsoft.com\",\r\n \"x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Divya Gupta\",\r\n \"smtp:divyag@ntdev.microsoft.com\",\r\n \"smtp:divyag@microsoft.com\",\r\n \"X500:/O=microsoft/OU=northamerica/cn=Recipients/cn=divyag\",\r\n \"SMTP:Divya.Gupta@microsoft.com\"\r\n ],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"divyag@ntdev.microsoft.com\",\r\n \"sipProxyAddress\": \"divyag@microsoft.com\",\r\n \"smtpAddresses\": [\r\n \"Divya.Gupta@microsoft.com\",\r\n \"DIVYAG@service.microsoft.com\",\r\n \"divyag@ntdev.microsoft.com\",\r\n \"divyag@microsoft.com\"\r\n ],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Gupta (KEY VAULT)\",\r\n \"telephoneNumber\": \"+1 (425) 4217882 X17882\",\r\n \"thumbnailPhoto@odata.mediaContentType\": \"image/Jpeg\",\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"divyag@ntdev.microsoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": null\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/71ecaf6c-7521-4953-ba5f-e55c260af004/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a3042c3-fc03-4ee2-9930-7d48eb74563c\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"kvtest\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"kvtest\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"kvtest\",\r\n \"mobile\": null,\r\n \"netId\": \"1003BFFD90AD2ADE\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"kvtest@yuhuizhotmail.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7215" + "1951" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -484,13 +484,13 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "WidflJ9mqequu8oD2vdZNqrS85ZDnXLVWdKHcPhx/k4=" + "Oqko02haJxDTRhctK/G36gK387+J0M2ZgOrTBM5zf4M=" ], "request-id": [ - "15294f53-34d4-4b90-8470-7347aad73cd2" + "8c0c8554-79c3-4dd0-a72a-ba9853afb267" ], "client-request-id": [ - "20ce2909-4d1f-407a-8144-0a1a262187c1" + "9ad3e2d6-a354-489b-baa9-95e77ec2e5ab" ], "x-ms-gateway-rewrite": [ "false" @@ -499,7 +499,7 @@ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "meWm190TB1w7cR3pkfFfU8dwaXESX7G5Q7Pb3oUApLSaotc4zRLwnupE48CiTxa87XMJv4cQfjF-vuchUpoiM3MJCIMPBDX6yE_0wLzIwWIiZUhlATEw-yv_JvQUBSdm._PqQvcnxpG8pTVnlZJvElvEWc4AeFxv4JuB9tt-hRp8" + "-XwA9XpbhUqspbMetz-vazl3Jf0SoIcEm-qndTEGQDihGTagy43GnZ1yC90SzCdXbtJHsHZ--ZFJ4JVKemv-kmJEc7GO_WGs6DHqcI_e7A3r8pW4mI3JuUJ6CM3xLBfYOVYGP1E33EvVv5qKWVJBjQ.B14pMeqUvYaXSwf0WDOkgrLkQJuiTseg5p1GUexxI-8" ], "X-Content-Type-Options": [ "nosniff" @@ -527,7 +527,7 @@ "ASP.NET" ], "Date": [ - "Wed, 13 May 2015 19:48:20 GMT" + "Fri, 15 May 2015 23:39:00 GMT" ] }, "StatusCode": 200 @@ -535,12 +535,12 @@ ], "Names": {}, "Variables": { - "ResourceGroupName": "pshtestrg6041", + "ResourceGroupName": "pshtestrg2690", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault1018", - "SubscriptionId": "6d59efe9-a0e4-4066-9771-725b10837e10", - "User": "divyag@ntdev.microsoft.com", - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Domain": "ntdev.microsoft.com" + "PreCreatedVault": "pshtestvault2489", + "SubscriptionId": "86193581-bb76-44a9-9110-8cf6dbcbfea5", + "User": "kvtest@yuhuizhotmail.onmicrosoft.com", + "TenantId": "71ecaf6c-7521-4953-ba5f-e55c260af004", + "Domain": "yuhuizhotmail.onmicrosoft.com" } } \ No newline at end of file From 48d95900c42f0e2d30b2b9efa66f4d25335358ec Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Fri, 15 May 2015 16:56:36 -0700 Subject: [PATCH 30/40] Add a scenario test for Move and Set. Accept legacy property object. Fix an issue with Gallery client --- .../PowerShellExtensions.cs | 5 +- .../Commands.ResourceManager.Cmdlets.csproj | 1 + .../Resources/ResourceObjectFormat.cs | 32 + .../Cmdlets/Extensions/JTokenExtensions.cs | 16 +- .../Cmdlets/Extensions/PsObjectExtensions.cs | 4 +- .../Cmdlets/Extensions/ResourceExtensions.cs | 25 +- .../Cmdlets/Extensions/StringExtensions.cs | 10 + .../Implementation/GetAzureResourceCmdlet.cs | 23 +- ...eResourceGroupDeploymentOperationCmdlet.cs | 3 +- .../GetAzureResourceLockCmdlet.cs | 3 +- .../InvokeAzureResourceActionCmdlet.cs | 3 +- .../Implementation/MoveAzureResourceCmdlet.cs | 3 +- .../Implementation/NewAzureResourceCmdlet.cs | 28 +- .../NewAzureResourceLockCmdlet.cs | 3 +- .../RemoveAzureResourceCmdlet.cs | 3 +- .../ResourceManagerCmdletBase.cs | 7 +- .../Implementation/SetAzureResourceCmdlet.cs | 20 +- .../Commands.Resources.Test.csproj | 6 + .../ScenarioTests/ResourceTests.cs | 14 + .../ScenarioTests/ResourceTests.ps1 | 52 + .../TestMoveAResourceTest.json | 1079 +++++++++++++++++ .../TestSetAResourceTest.json | 510 ++++++++ .../GalleryTemplatesClient.cs | 4 + 23 files changed, 1823 insertions(+), 31 deletions(-) create mode 100644 src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Entities/Resources/ResourceObjectFormat.cs create mode 100644 src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestMoveAResourceTest.json create mode 100644 src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestSetAResourceTest.json diff --git a/src/Common/Commands.ScenarioTests.Common/PowerShellExtensions.cs b/src/Common/Commands.ScenarioTests.Common/PowerShellExtensions.cs index 38c071b43059..13250e4c9b24 100644 --- a/src/Common/Commands.ScenarioTests.Common/PowerShellExtensions.cs +++ b/src/Common/Commands.ScenarioTests.Common/PowerShellExtensions.cs @@ -206,7 +206,10 @@ private static void LogPowerShellStream(ICollection stream, string name) Console.WriteLine("---------------------------------------------------------------\n"); foreach (T item in stream) { - Console.WriteLine("{0}\n", item.ToString()); + if(item != null) + { + Console.WriteLine("{0}\n", item.ToString()); + } } Console.WriteLine("---------------------------------------------------------------\n"); Console.WriteLine(""); diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj index b9a7062e50d2..599ec9ad477e 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj @@ -109,6 +109,7 @@ + diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Entities/Resources/ResourceObjectFormat.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Entities/Resources/ResourceObjectFormat.cs new file mode 100644 index 000000000000..6666e2b4c5b1 --- /dev/null +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Entities/Resources/ResourceObjectFormat.cs @@ -0,0 +1,32 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources +{ + /// + /// The resource object format + /// + public enum ResourceObjectFormat + { + /// + /// The legacy format. + /// + Legacy = 0, + + /// + /// The new format. + /// + New = 1 + } +} diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/JTokenExtensions.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/JTokenExtensions.cs index 32816d30415f..6f07cf39c5bd 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/JTokenExtensions.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/JTokenExtensions.cs @@ -49,8 +49,9 @@ internal static class JTokenExtensions /// Converts a to a /// /// The + /// The /// The type of the object. - internal static PSObject ToPsObject(this JToken jtoken, string objectType = null) + internal static PSObject ToPsObject(this JToken jtoken, ResourceObjectFormat objectFormat, string objectType = null) { if (jtoken == null) { @@ -59,7 +60,7 @@ internal static PSObject ToPsObject(this JToken jtoken, string objectType = null if (jtoken.Type != JTokenType.Object) { - return new PSObject(JTokenExtensions.ConvertPropertyValueForPsObject(propertyValue: jtoken)); + return new PSObject(JTokenExtensions.ConvertPropertyValueForPsObject(propertyValue: jtoken, objectFormat: objectFormat)); } var jobject = (JObject)jtoken; @@ -67,7 +68,7 @@ internal static PSObject ToPsObject(this JToken jtoken, string objectType = null if (jobject.CanConvertTo>()) { - return jobject.ToResource().ToPsObject(); + return jobject.ToResource().ToPsObject(objectFormat); } if (!string.IsNullOrWhiteSpace(objectType)) @@ -79,7 +80,7 @@ internal static PSObject ToPsObject(this JToken jtoken, string objectType = null { psObject.Properties.Add(new PSNoteProperty( name: JTokenExtensions.ConvertToPascalCase(propertyName: property.Name), - value: JTokenExtensions.ConvertPropertyValueForPsObject(propertyValue: property.Value))); + value: JTokenExtensions.ConvertPropertyValueForPsObject(propertyValue: property.Value, objectFormat: objectFormat))); } return psObject; @@ -90,11 +91,12 @@ internal static PSObject ToPsObject(this JToken jtoken, string objectType = null /// used as the value of a . /// /// The value. - internal static object ConvertPropertyValueForPsObject(JToken propertyValue) + /// The + internal static object ConvertPropertyValueForPsObject(JToken propertyValue, ResourceObjectFormat objectFormat) { if (propertyValue.Type == JTokenType.Object) { - return propertyValue.ToPsObject(); + return propertyValue.ToPsObject(objectFormat); } if (propertyValue.Type == JTokenType.Array) @@ -105,7 +107,7 @@ internal static object ConvertPropertyValueForPsObject(JToken propertyValue) for (int i = 0; i < array.Length; ++i) { - array[i] = JTokenExtensions.ConvertPropertyValueForPsObject(jArray[i]); + array[i] = JTokenExtensions.ConvertPropertyValueForPsObject(jArray[i], objectFormat); } return array; diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs index 2a0427d1897f..ff758cf705fa 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs @@ -67,9 +67,9 @@ private static JToken ToJToken(object value) if (valueAsPsObject != null) { JObject obj = new JObject(); - if (valueAsPsObject.TypeNames.Any(typeName => typeName.EqualsInsensitively("System.Collections.Hashtable")) && valueAsPsObject.BaseObject is Hashtable) + if (valueAsPsObject.BaseObject != null && valueAsPsObject.BaseObject is IDictionary) { - foreach (var dictionaryEntry in ((Hashtable)valueAsPsObject.BaseObject).OfType()) + foreach (var dictionaryEntry in ((IDictionary)valueAsPsObject.BaseObject).OfType()) { obj.Add(dictionaryEntry.Key.ToString(), PsObjectExtensions.ToJToken(dictionaryEntry.Value)); } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs index 2bd783bbf1a4..bf8713eb823b 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs @@ -19,6 +19,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; + using Microsoft.Azure.Common.Authentication; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Newtonsoft.Json.Linq; @@ -31,7 +32,8 @@ internal static class ResourceExtensions /// Converts a object into a object. /// /// The object. - internal static PSObject ToPsObject(this Resource resource) + /// The + internal static PSObject ToPsObject(this Resource resource, ResourceObjectFormat objectFormat) { var resourceType = ResourceIdUtility.GetResourceType(resource.Id); var extensionResourceType = ResourceIdUtility.GetExtensionResourceType(resource.Id); @@ -49,8 +51,8 @@ internal static PSObject ToPsObject(this Resource resource) { "Location", resource.Location }, { "SubscriptionId", ResourceIdUtility.GetSubscriptionId(resource.Id) }, { "Tags", TagsHelper.GetTagsHashtables(resource.Tags) }, - { "Plan", resource.Plan.ToJToken().ToPsObject() }, - { "Properties", resource.Properties.ToPsObject() }, + { "Plan", resource.Plan.ToJToken().ToPsObject(objectFormat) }, + { "Properties", ResourceExtensions.GetProperties(resource, objectFormat) }, { "CreatedTime", resource.CreatedTime }, { "ChangedTime", resource.ChangedTime }, { "ETag", resource.ETag }, @@ -64,6 +66,23 @@ internal static PSObject ToPsObject(this Resource resource) return psObject; } + /// + /// Gets the properties object + /// + /// The object. + /// The + private static object GetProperties(Resource resource, ResourceObjectFormat objectFormat) + { + if (resource.Properties == null) + { + return null; + } + + return objectFormat == ResourceObjectFormat.Legacy + ? JsonUtilities.DeserializeJson(resource.Properties.ToString()) + : (object)resource.Properties.ToPsObject(objectFormat); + } + /// /// Converts a to a . /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/StringExtensions.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/StringExtensions.cs index 61e0e20f0aac..e6e514569f86 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/StringExtensions.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/StringExtensions.cs @@ -42,6 +42,16 @@ public static bool EqualsInsensitively(this string original, string otherString) return string.Equals(original, otherString, StringComparison.InvariantCultureIgnoreCase); } + /// + /// Compares two string values insensitively. + /// + /// The original string. + /// The other string. + public static bool StartsWithInsensitively(this string original, string otherString) + { + return original.CoalesceString().StartsWith(otherString.CoalesceString(), StringComparison.InvariantCultureIgnoreCase); + } + /// /// Splits the string with given separators and removes empty entries. /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs index 4bdc0869bece..d6f69960e46b 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs @@ -212,6 +212,20 @@ public sealed class GetAzureResourceCmdlet : ResourceManagerCmdletBase [Parameter(ParameterSetName = GetAzureResourceCmdlet.ListTenantResourcesParameterSet, Mandatory = true, HelpMessage = "Indicates that this is a tenant level operation.")] public SwitchParameter TenantLevel { get; set; } + /// + /// Gets or sets the resource property object format. + /// + [Parameter(Mandatory = false, HelpMessage = "The output format of the resource properties.")] + public ResourceObjectFormat OutputObjectFormat { get; set; } + + /// + /// Initializes a new instance of the class. + /// + public GetAzureResourceCmdlet() + { + this.OutputObjectFormat = ResourceObjectFormat.Legacy; + } + /// /// Collects subscription ids from the pipeline. /// @@ -242,6 +256,11 @@ protected override void OnEndProcessing() /// private void RunCmdlet() { + if(this.OutputObjectFormat == ResourceObjectFormat.Legacy) + { + this.WriteWarning("This cmdlet is using the legacy properties object format. This format is being deprecated. Please use '-OutputObjectFormat New' and update your scripts."); + } + PaginatedResponseHelper.ForEach( getFirstPage: () => this.GetResources(), getNextPage: nextLink => this.GetNextLink(nextLink), @@ -261,7 +280,7 @@ private void RunCmdlet() items = this.GetPopulatedResource(batch).Result; } - var powerShellObjects = items.SelectArray(genericResource => genericResource.ToPsObject()); + var powerShellObjects = items.SelectArray(genericResource => genericResource.ToPsObject(this.OutputObjectFormat)); if (this.ExpandPermissions) { this.PopulatePermissions(powerShellObjects).Wait(); @@ -272,7 +291,7 @@ private void RunCmdlet() } else { - this.WriteObject(sendToPipeline: resources.CoalesceEnumerable().SelectArray(res => res.ToPsObject()), enumerateCollection: true); + this.WriteObject(sendToPipeline: resources.CoalesceEnumerable().SelectArray(res => res.ToPsObject(this.OutputObjectFormat)), enumerateCollection: true); } }); diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceGroupDeploymentOperationCmdlet.cs index fb79c1e06645..a95072dab34a 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceGroupDeploymentOperationCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceGroupDeploymentOperationCmdlet.cs @@ -18,6 +18,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation using System.Management.Automation; using System.Threading.Tasks; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; using Newtonsoft.Json.Linq; @@ -73,7 +74,7 @@ private void RunCmdlet() getFirstPage: () => this.GetResources(), getNextPage: nextLink => this.GetNextLink(nextLink), cancellationToken: this.CancellationToken, - action: resources => this.WriteObject(sendToPipeline: resources.CoalesceEnumerable().SelectArray(resource => resource.ToPsObject()), enumerateCollection: true)); + action: resources => this.WriteObject(sendToPipeline: resources.CoalesceEnumerable().SelectArray(resource => resource.ToPsObject(ResourceObjectFormat.New)), enumerateCollection: true)); } /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceLockCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceLockCmdlet.cs index 73c1d896f7b4..b562e849ffcf 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceLockCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceLockCmdlet.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation using System.Management.Automation; using System.Threading.Tasks; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; using Newtonsoft.Json.Linq; @@ -79,7 +80,7 @@ private void RunCmdlet() getFirstPage: () => this.GetResources(), getNextPage: nextLink => this.GetNextLink(nextLink), cancellationToken: this.CancellationToken, - action: resources => this.WriteObject(sendToPipeline: resources.CoalesceEnumerable().SelectArray(resource => resource.ToPsObject()), enumerateCollection: true)); + action: resources => this.WriteObject(sendToPipeline: resources.CoalesceEnumerable().SelectArray(resource => resource.ToPsObject(ResourceObjectFormat.New)), enumerateCollection: true)); } /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/InvokeAzureResourceActionCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/InvokeAzureResourceActionCmdlet.cs index 11b5a091fd5b..4dbf4b8cde36 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/InvokeAzureResourceActionCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/InvokeAzureResourceActionCmdlet.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { using System.Collections; using System.Management.Automation; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; using Microsoft.WindowsAzure.Commands.Common; using Newtonsoft.Json.Linq; @@ -82,7 +83,7 @@ protected override void OnProcessRecord() var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: false) .WaitOnOperation(operationResult: operationResult); - this.WriteObject(result); + this.WriteObject(result, ResourceObjectFormat.New); }); } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs index 604d8dacb40f..e987b0a4b4f4 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs @@ -20,6 +20,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.ResourceGroups; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; using Newtonsoft.Json.Linq; @@ -172,7 +173,7 @@ private void RunCmdlet() isResourceCreateOrUpdate: false) .WaitOnOperation(operationResult: operationResult); - this.WriteObject(result); + this.WriteObject(result, ResourceObjectFormat.New); } else { diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs index 664b2b376f5c..f5990be04fbf 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs @@ -46,10 +46,10 @@ public sealed class NewAzureResourceCmdlet : ResourceManipulationCmdletBase /// /// Gets or sets the property object. /// - [Alias("Object")] + [Alias("Object", "PropertyObject")] [Parameter(Mandatory = true, HelpMessage = "A hash table which represents resource properties.")] [ValidateNotNullOrEmpty] - public Hashtable PropertyObject { get; set; } + public PSObject Properties { get; set; } /// /// Gets or sets the plan object. @@ -71,6 +71,20 @@ public sealed class NewAzureResourceCmdlet : ResourceManipulationCmdletBase [Parameter(Mandatory = false, HelpMessage = "When set indicates that the full object is passed in to the -PropertyObject parameter.")] public SwitchParameter IsFullObject { get; set; } + /// + /// Gets or sets the resource property object format. + /// + [Parameter(Mandatory = false, HelpMessage = "The output format of the resource properties.")] + public ResourceObjectFormat OutputObjectFormat { get; set; } + + /// + /// Initializes a new instance of the class. + /// + public NewAzureResourceCmdlet() + { + this.OutputObjectFormat = ResourceObjectFormat.Legacy; + } + /// /// Executes the cmdlet. /// @@ -109,7 +123,7 @@ protected override void OnProcessRecord() var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true) .WaitOnOperation(operationResult: operationResult); - this.WriteObject(result); + this.WriteObject(result, this.OutputObjectFormat); }); } @@ -119,22 +133,22 @@ protected override void OnProcessRecord() private JToken GetResourceBody() { return this.IsFullObject - ? this.PropertyObject.ToDictionary(addValueLayer: false).ToJToken() + ? this.Properties.ToResourcePropertiesBody().ToJToken() : this.GetResource().ToJToken(); } /// /// Constructs the resource assuming that only the properties were passed in. /// - private Resource> GetResource() + private Resource GetResource() { - return new Resource>() + return new Resource() { Location = this.Location, Kind = this.Kind, Plan = this.PlanObject.ToDictionary(addValueLayer: false).ToJson().FromJson(), Tags = TagsHelper.GetTagsDictionary(this.Tag), - Properties = this.PropertyObject.ToDictionary(addValueLayer: false), + Properties = this.Properties.ToResourcePropertiesBody(), }; } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceLockCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceLockCmdlet.cs index 7f319bac3be5..b670dc2c48f6 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceLockCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceLockCmdlet.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; using Newtonsoft.Json.Linq; @@ -111,7 +112,7 @@ protected override void OnProcessRecord() var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true) .WaitOnOperation(operationResult: operationResult); - this.WriteObject(result); + this.WriteObject(result, ResourceObjectFormat.New); }); } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceCmdlet.cs index 5fbe75833253..d6f824e7c047 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceCmdlet.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { using System.Management.Automation; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; /// /// A cmdlet that creates a new azure resource. @@ -59,7 +60,7 @@ protected override void OnProcessRecord() var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: false) .WaitOnOperation(operationResult: operationResult); - this.WriteObject(result); + this.WriteObject(result, ResourceObjectFormat.New); }); } } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs index dd7c7521d4f9..e9d9c2da7a2d 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs @@ -22,6 +22,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation using System.Threading.Tasks; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.ErrorResponses; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.RestClients; using Microsoft.Azure.Common.Authentication; @@ -261,9 +262,11 @@ public ResourceManagerRestRestClient GetResourcesClient() /// /// Writes a object as a . /// - protected void WriteObject(JToken result) + /// The result of the action. + /// The + protected void WriteObject(JToken result, ResourceObjectFormat objectFormat) { - this.WriteObject(sendToPipeline: result.ToPsObject(), enumerateCollection: true); + this.WriteObject(sendToPipeline: result.ToPsObject(objectFormat), enumerateCollection: true); } /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs index 69d6ba18549a..66e3a922b6c6 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs @@ -65,12 +65,30 @@ public sealed class SetAzureResourceCmdlet : ResourceManipulationCmdletBase [Parameter(Mandatory = false, HelpMessage = "When set indicates if an HTTP PATCH should be used to update the object instead of PUT.")] public SwitchParameter UsePatchSemantics { get; set; } + /// + /// Gets or sets the resource property object format. + /// + [Parameter(Mandatory = false, HelpMessage = "The output format of the resource properties.")] + public ResourceObjectFormat OutputObjectFormat { get; set; } + + /// + /// Initializes a new instance of the class. + /// + public SetAzureResourceCmdlet() + { + this.OutputObjectFormat = ResourceObjectFormat.Legacy; + } + /// /// Executes the cmdlet. /// protected override void OnProcessRecord() { base.OnProcessRecord(); + if (this.OutputObjectFormat == ResourceObjectFormat.Legacy) + { + this.WriteWarning("This cmdlet is using the legacy properties object format. This format is being deprecated. Please use '-OutputObjectFormat New' and update your scripts."); + } var resourceId = this.GetResourceId(); this.ConfirmAction( this.Force, @@ -110,7 +128,7 @@ protected override void OnProcessRecord() var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true) .WaitOnOperation(operationResult: operationResult); - this.WriteObject(result); + this.WriteObject(result, this.OutputObjectFormat); }); } diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj index 40778107224c..8ae583c8e21e 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj @@ -424,6 +424,12 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.cs index 52f4f7ca5765..c379bed1874d 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.cs @@ -75,5 +75,19 @@ public void TestGetResourcesViaPipingFromAnotherResource() { ResourcesController.NewInstance.RunPsTest("Test-GetResourcesViaPipingFromAnotherResource"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestMoveAResourceTest() + { + ResourcesController.NewInstance.RunPsTest("Test-MoveAResource"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSetAResourceTest() + { + ResourcesController.NewInstance.RunPsTest("Test-SetAResource"); + } } } diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.ps1 b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.ps1 index 7f7cfb77cb9e..a51aea1692b3 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.ps1 +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.ps1 @@ -214,4 +214,56 @@ function Test-GetResourcesViaPipingFromAnotherResource # Assert Assert-AreEqual 2 @($list).Count +} + +<# +.SYNOPSIS +Tests moving a resource. +#> +function Test-MoveAResource +{ + # Setup + $rgname = Get-ResourceGroupName + $rgname2 = Get-ResourceGroupName + "test3" + $rname = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $apiversion = "2014-04-01" + $resourceType = "Providers.Test/statefulResources" + + # Test + New-AzureResourceGroup -Name $rgname -Location $rglocation + New-AzureResourceGroup -Name $rgname2 -Location $rglocation + $resource = New-AzureResource -Name $rname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} -ResourceGroupName $rgname -ResourceType $resourceType -PropertyObject @{"key" = "value"} -ApiVersion $apiversion -Force + Move-AzureResource -ResourceId $resource.ResourceId -DestinationResourceGroupName $rgname2 -Force + + $movedResource = Get-AzureResource -ResourceGroupName $rgname2 -ResourceName $rname -ResourceType $resourceType + + # Assert + Assert-AreEqual $movedResource.Name $resource.Name + Assert-AreEqual $movedResource.ResourceGroupName $rgname2 + Assert-AreEqual $movedResource.ResourceType $resource.ResourceType +} + +<# +.SYNOPSIS +Tests setting a resource. +#> +function Test-SetAResource +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $apiversion = "2014-04-01" + $resourceType = "Providers.Test/statefulResources" + + # Test + New-AzureResourceGroup -Name $rgname -Location $rglocation + $resource = New-AzureResource -Name $rname -Location $rglocation -Tags @{Name = "testtag"; Value = "testval"} -ResourceGroupName $rgname -ResourceType $resourceType -PropertyObject @{"key" = "value"} -ApiVersion $apiversion -Force + Set-AzureResource -ResourceGroupName $rgname -ResourceName $rname -ResourceType $resourceType -Properties @{"key2" = "value2"} -Force + + $modifiedResource = Get-AzureResource -ResourceGroupName $rgname -ResourceName $rname -ResourceType $resourceType + + # Assert + Assert-AreEqual $modifiedResource.Properties.key2 "value2" } \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestMoveAResourceTest.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestMoveAResourceTest.json new file mode 100644 index 000000000000..e1e65e4e9f60 --- /dev/null +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestMoveAResourceTest.json @@ -0,0 +1,1079 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "e3564c8d-5df4-4426-8f6b-1b79564211d3" + ], + "x-ms-correlation-request-id": [ + "e3564c8d-5df4-4426-8f6b-1b79564211d3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234006Z:e3564c8d-5df4-4426-8f6b-1b79564211d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6427?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "01a9191c-1a26-4190-a139-edddd60007d9" + ], + "x-ms-correlation-request-id": [ + "01a9191c-1a26-4190-a139-edddd60007d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234007Z:01a9191c-1a26-4190-a139-edddd60007d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6427?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427\",\r\n \"name\": \"onesdk6427\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "9dd9fc0f-eaf9-482e-a21b-a0e812c02401" + ], + "x-ms-correlation-request-id": [ + "9dd9fc0f-eaf9-482e-a21b-a0e812c02401" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234007Z:9dd9fc0f-eaf9-482e-a21b-a0e812c02401" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:06 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY0MjcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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": [ + "14996" + ], + "x-ms-request-id": [ + "af35f13f-c3a6-4a7c-9f76-3b9e79366d27" + ], + "x-ms-correlation-request-id": [ + "af35f13f-c3a6-4a7c-9f76-3b9e79366d27" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234007Z:af35f13f-c3a6-4a7c-9f76-3b9e79366d27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6427/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:b43ddf84-f8b9-4769-a354-05e85e929a5c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "cfca7231-c9e4-4f3a-8e82-344eb0a6baa8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234007Z:cfca7231-c9e4-4f3a-8e82-344eb0a6baa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6758?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "b5c7eeec-ff8f-4f63-b5be-5907bc3af4dc" + ], + "x-ms-correlation-request-id": [ + "b5c7eeec-ff8f-4f63-b5be-5907bc3af4dc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234007Z:b5c7eeec-ff8f-4f63-b5be-5907bc3af4dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6758?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758\",\r\n \"name\": \"onesdk6758\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "1721e8e0-14b0-44fd-bba7-d8dd6d14436a" + ], + "x-ms-correlation-request-id": [ + "1721e8e0-14b0-44fd-bba7-d8dd6d14436a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234007Z:1721e8e0-14b0-44fd-bba7-d8dd6d14436a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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": [ + "14994" + ], + "x-ms-request-id": [ + "d83a3741-65b4-42f3-9a7f-cc16af59a203" + ], + "x-ms-correlation-request-id": [ + "d83a3741-65b4-42f3-9a7f-cc16af59a203" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234007Z:d83a3741-65b4-42f3-9a7f-cc16af59a203" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6758/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f262583d-30d6-4998-9502-2bd54f45ec69" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "80c9aac4-b1f3-4919-8778-0cf063ae95a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234007Z:80c9aac4-b1f3-4919-8778-0cf063ae95a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/providers/Providers.Test/statefulResources/onesdk8769?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY0MjcvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazg3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"key\": \"value\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/providers/Providers.Test/statefulResources/onesdk8769\",\r\n \"name\": \"onesdk8769\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:967f9f51-9f4f-4aac-a4d8-5f06ed83239f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "a53a2552-b73d-453b-94ce-52f1064e57d3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234009Z:a53a2552-b73d-453b-94ce-52f1064e57d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE1LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "e044eb04-ccc4-4259-9cf7-c50e14c3c726" + ], + "x-ms-correlation-request-id": [ + "e044eb04-ccc4-4259-9cf7-c50e14c3c726" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234010Z:e044eb04-ccc4-4259-9cf7-c50e14c3c726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE1LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "6b6e21a8-61ab-4c44-942b-3138d60bb945" + ], + "x-ms-correlation-request-id": [ + "6b6e21a8-61ab-4c44-942b-3138d60bb945" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150515T234200Z:6b6e21a8-61ab-4c44-942b-3138d60bb945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:42:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/moveResources?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY0MjcvbW92ZVJlc291cmNlcz9hcGktdmVyc2lvbj0yMDE1LTAxLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"targetResourceGroup\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758\",\r\n \"resources\": [\r\n \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/providers/Providers.Test/statefulResources/onesdk8769\"\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "273" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "707796e2-b445-4628-b420-7634c9696479" + ], + "x-ms-correlation-request-id": [ + "707796e2-b445-4628-b420-7634c9696479" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234010Z:707796e2-b445-4628-b420-7634c9696479" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "bbe70f95-e1c5-48c0-80b1-3b2c50d17deb" + ], + "x-ms-correlation-request-id": [ + "bbe70f95-e1c5-48c0-80b1-3b2c50d17deb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234011Z:bbe70f95-e1c5-48c0-80b1-3b2c50d17deb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "17980cbf-59d1-4e65-abe6-ffd8f2c4ecc1" + ], + "x-ms-correlation-request-id": [ + "17980cbf-59d1-4e65-abe6-ffd8f2c4ecc1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234027Z:17980cbf-59d1-4e65-abe6-ffd8f2c4ecc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "a9c5cad3-c7c7-4b8c-91d8-eabd28e08bee" + ], + "x-ms-correlation-request-id": [ + "a9c5cad3-c7c7-4b8c-91d8-eabd28e08bee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234042Z:a9c5cad3-c7c7-4b8c-91d8-eabd28e08bee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "6a13c6aa-0d23-4711-841d-b8b52751e4d1" + ], + "x-ms-correlation-request-id": [ + "6a13c6aa-0d23-4711-841d-b8b52751e4d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234057Z:6a13c6aa-0d23-4711-841d-b8b52751e4d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:40:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "b06441dc-90c2-46d2-b8c3-efe819f294b4" + ], + "x-ms-correlation-request-id": [ + "b06441dc-90c2-46d2-b8c3-efe819f294b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234112Z:b06441dc-90c2-46d2-b8c3-efe819f294b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:41:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "58b64c5a-5dc2-4df8-be21-af68f52ed174" + ], + "x-ms-correlation-request-id": [ + "58b64c5a-5dc2-4df8-be21-af68f52ed174" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234127Z:58b64c5a-5dc2-4df8-be21-af68f52ed174" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:41:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "d7fad595-d321-40f7-a21e-96e79e36d630" + ], + "x-ms-correlation-request-id": [ + "d7fad595-d321-40f7-a21e-96e79e36d630" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T234143Z:d7fad595-d321-40f7-a21e-96e79e36d630" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:41:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "93c0fddf-2fdc-4e1b-a9b4-84d553701448" + ], + "x-ms-correlation-request-id": [ + "93c0fddf-2fdc-4e1b-a9b4-84d553701448" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150515T234159Z:93c0fddf-2fdc-4e1b-a9b4-84d553701448" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:41:58 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758/providers/Providers.Test/statefulResources/onesdk8769?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTgvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazg3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758/providers/Providers.Test/statefulResources/onesdk8769\",\r\n \"name\": \"onesdk8769\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:c3dd7857-8003-4b45-9044-d81813f11b96" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "c47c102a-8750-4ed0-b381-e3cac625335d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150515T234201Z:c47c102a-8750-4ed0-b381-e3cac625335d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 23:42:00 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-MoveAResource": [ + "onesdk6427", + "onesdk6758", + "onesdk8769" + ] + }, + "Variables": { + "SubscriptionId": "38b598fc-e57a-423f-b2e7-dc0ddb631f1f", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestSetAResourceTest.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestSetAResourceTest.json new file mode 100644 index 000000000000..4f109f82cc81 --- /dev/null +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestSetAResourceTest.json @@ -0,0 +1,510 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45154" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "0d867688-5b55-4f6f-ad25-2efa9fa04103" + ], + "x-ms-correlation-request-id": [ + "0d867688-5b55-4f6f-ad25-2efa9fa04103" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203418Z:0d867688-5b55-4f6f-ad25-2efa9fa04103" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk7123?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxMjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "13b20bcd-8ea1-444c-a270-232e1a0bd417" + ], + "x-ms-correlation-request-id": [ + "13b20bcd-8ea1-444c-a270-232e1a0bd417" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203418Z:13b20bcd-8ea1-444c-a270-232e1a0bd417" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:18 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk7123?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxMjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123\",\r\n \"name\": \"onesdk7123\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "d00823df-3bf6-4dd4-abde-475f7480b69e" + ], + "x-ms-correlation-request-id": [ + "d00823df-3bf6-4dd4-abde-475f7480b69e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203419Z:d00823df-3bf6-4dd4-abde-475f7480b69e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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": [ + "14995" + ], + "x-ms-request-id": [ + "caaf851f-9bb5-4222-821e-4c1b61ca2ea8" + ], + "x-ms-correlation-request-id": [ + "caaf851f-9bb5-4222-821e-4c1b61ca2ea8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203419Z:caaf851f-9bb5-4222-821e-4c1b61ca2ea8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk7123/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e3bbf9d2-68cc-48a0-9620-8d790a1f8580" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "77eca5ce-cc35-4b72-980c-67e6bfd588ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203419Z:77eca5ce-cc35-4b72-980c-67e6bfd588ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazY1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"key\": \"value\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593\",\r\n \"name\": \"onesdk6593\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:31879f13-c3ef-4a05-b49d-bc409046c04b" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6c67747e-572a-4d9e-a33b-4f960758d102" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203422Z:6c67747e-572a-4d9e-a33b-4f960758d102" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:22 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazY1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "121" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593\",\r\n \"name\": \"onesdk6593\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key2\": \"value2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "283" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4a7a2893-5f1e-4c89-ace1-b10e0e823713" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "75c8c3c0-e54f-422d-bf0f-c3eeb69ffc5c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203424Z:75c8c3c0-e54f-422d-bf0f-c3eeb69ffc5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE1LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45154" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "f89e6d4d-cefe-4abe-8474-1ffe2a1c4b34" + ], + "x-ms-correlation-request-id": [ + "f89e6d4d-cefe-4abe-8474-1ffe2a1c4b34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203423Z:f89e6d4d-cefe-4abe-8474-1ffe2a1c4b34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazY1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593\",\r\n \"name\": \"onesdk6593\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:87fcbfb3-6e23-4094-b267-abd5bfb6a907" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "9081e3dc-abfa-4cf6-8f7f-825d28f6cc34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203424Z:9081e3dc-abfa-4cf6-8f7f-825d28f6cc34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazY1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": {}, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593\",\r\n \"name\": \"onesdk6593\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key2\": \"value2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "283" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f91017b1-8e8f-4e76-9668-8f03dc543f90" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "f4454186-4692-49e4-86c4-8e69fa7049ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150515T203425Z:f4454186-4692-49e4-86c4-8e69fa7049ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 15 May 2015 20:34:24 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-SetAResource": [ + "onesdk7123", + "onesdk6593" + ] + }, + "Variables": { + "SubscriptionId": "38b598fc-e57a-423f-b2e7-dc0ddb631f1f", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/GalleryTemplatesClient.cs b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/GalleryTemplatesClient.cs index 81d0a72094c7..458e4a3106c1 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/GalleryTemplatesClient.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/GalleryTemplatesClient.cs @@ -289,6 +289,10 @@ private RuntimeDefinedParameterDictionary ParseTemplateAndExtractParameters(stri try { templateFile = JsonConvert.DeserializeObject(templateContent); + if (templateFile.Parameters == null) + { + return dynamicParameters; + } } catch { From 858709c1b064fd82ddf998ce60fb8008e7b9768c Mon Sep 17 00:00:00 2001 From: siddheshwar-more Date: Mon, 18 May 2015 08:40:24 +0000 Subject: [PATCH 31/40] Changes to add DeleteChefConfig option for set chef extension --- .../Chef/SetAzureVMChefExtension.cs | 19 +++++++++++++++---- .../VirtualMachineChefExtensionCmdletBase.cs | 1 + ...re.Commands.ServiceManagement.dll-Help.xml | 11 +++++++++++ 3 files changed, 27 insertions(+), 4 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/SetAzureVMChefExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/SetAzureVMChefExtension.cs index 2a8e480ebb58..57856ee9352d 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/SetAzureVMChefExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/SetAzureVMChefExtension.cs @@ -90,6 +90,12 @@ public class SetAzureVMChefExtensionCommand : VirtualMachineChefExtensionCmdletB [ValidateNotNullOrEmpty] public SwitchParameter AutoUpdateChefClient { get; set; } + [Parameter( + ValueFromPipelineByPropertyName = true, + HelpMessage = "Delete the chef config files during update/uninstall extension. Default is false.")] + [ValidateNotNullOrEmpty] + public SwitchParameter DeleteChefConfig { get; set; } + [Parameter( Mandatory = true, ParameterSetName = LinuxParameterSetName, @@ -160,6 +166,7 @@ private void SetPublicConfig() bool IsRunListEmpty = string.IsNullOrEmpty(this.RunList); bool IsBootstrapOptionsEmpty = string.IsNullOrEmpty(this.BootstrapOptions); string AutoUpdateChefClient = this.AutoUpdateChefClient.IsPresent ? "true" : "false"; + string DeleteChefConfig = this.DeleteChefConfig.IsPresent ? "true" : "false"; //Cases handled: // 1. When clientRb given by user and: @@ -213,14 +220,16 @@ private void SetPublicConfig() { if (IsBootstrapOptionsEmpty) { - this.PublicConfiguration = string.Format("{{{0},{1}}}", + this.PublicConfiguration = string.Format("{{{0},{1},{2}}}", string.Format(AutoUpdateTemplate, AutoUpdateChefClient), + string.Format(DeleteChefConfigTemplate, DeleteChefConfig), string.Format(ClientRbTemplate, ClientConfig)); } else { - this.PublicConfiguration = string.Format("{{{0},{1},{2}}}", + this.PublicConfiguration = string.Format("{{{0},{1},{2},{3}}}", string.Format(AutoUpdateTemplate, AutoUpdateChefClient), + string.Format(DeleteChefConfigTemplate, DeleteChefConfig), string.Format(ClientRbTemplate, ClientConfig), string.Format(BootStrapOptionsTemplate, this.BootstrapOptions)); } @@ -229,15 +238,17 @@ private void SetPublicConfig() { if (IsBootstrapOptionsEmpty) { - this.PublicConfiguration = string.Format("{{{0},{1},{2}}}", + this.PublicConfiguration = string.Format("{{{0},{1},{2},{3}}}", string.Format(AutoUpdateTemplate, AutoUpdateChefClient), + string.Format(DeleteChefConfigTemplate, DeleteChefConfig), string.Format(ClientRbTemplate, ClientConfig), string.Format(RunListTemplate, this.RunList)); } else { - this.PublicConfiguration = string.Format("{{{0},{1},{2},{3}}", + this.PublicConfiguration = string.Format("{{{0},{1},{2},{3},{4}}", string.Format(AutoUpdateTemplate, AutoUpdateChefClient), + string.Format(DeleteChefConfigTemplate, DeleteChefConfig), string.Format(ClientRbTemplate, ClientConfig), string.Format(RunListTemplate, this.RunList), string.Format(BootStrapOptionsTemplate, this.BootstrapOptions)); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs index b4ac54333677..d63e24aa4d05 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/VirtualMachineChefExtensionCmdletBase.cs @@ -23,6 +23,7 @@ public class VirtualMachineChefExtensionCmdletBase : VirtualMachineExtensionCmdl protected const string LinuxExtensionName = "LinuxChefClient"; protected const string PrivateConfigurationTemplate = "{{\"validation_key\":\"{0}\"}}"; protected const string AutoUpdateTemplate = "\"autoUpdateClient\":\"{0}\""; + protected const string DeleteChefConfigTemplate = "\"deleteChefConfig\":\"{0}\""; protected const string ClientRbTemplate = "\"client_rb\":\"{0}\""; protected const string BootStrapOptionsTemplate = "\"bootstrap_options\":{0}"; protected const string RunListTemplate = "\"runlist\": \"\\\"{0}\\\"\""; diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml b/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml index 695ee8aade39..2a44711c9701 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml @@ -33690,6 +33690,17 @@ PS C:\> Get-AzureVM -ServiceName "ContosoService03" -Name "Con + + DeleteChefConfig + + DeleteChefConfig Options determines whether Chef configuration files removed when Azure removes the Chef resource extension from the VM. This options is useful during extension update and uninstall process. Default is false + + + Boolean + + + false + BootstrapOptions From 7de245706838f010287f95ae312bc0330d3dfee2 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Mon, 18 May 2015 17:18:40 -0700 Subject: [PATCH 32/40] Throw warning only if using legacy object format --- .../Cmdlets/Extensions/PsObjectExtensions.cs | 14 +- .../Implementation/NewAzureResourceCmdlet.cs | 28 +- .../Implementation/SetAzureResourceCmdlet.cs | 32 +- .../TestMoveAResourceTest.json | 338 +++++++++--------- .../TestSetAResourceTest.json | 162 ++++----- 5 files changed, 309 insertions(+), 265 deletions(-) diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs index ff758cf705fa..126a6834b876 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions { using System; using System.Collections; + using System.Collections.Generic; using System.Linq; using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; @@ -69,9 +70,18 @@ private static JToken ToJToken(object value) JObject obj = new JObject(); if (valueAsPsObject.BaseObject != null && valueAsPsObject.BaseObject is IDictionary) { - foreach (var dictionaryEntry in ((IDictionary)valueAsPsObject.BaseObject).OfType()) + var valueAsIDictionary = valueAsPsObject.BaseObject as IDictionary; + var dictionaryEntries = valueAsIDictionary is IDictionary + ? valueAsIDictionary.OfType>().Select(kvp => Tuple.Create(kvp.Key, kvp.Value)) + : valueAsIDictionary.OfType().Select(dictionaryEntry => Tuple.Create(dictionaryEntry.Key.ToString(), dictionaryEntry.Value)); + + dictionaryEntries = dictionaryEntries.Any(dictionaryEntry => dictionaryEntry.Item1.EqualsInsensitively(Constants.MicrosoftAzureResource)) + ? dictionaryEntries.Where(dictionaryEntry => !PsObjectExtensions.PropertiesToRemove.ContainsKey(dictionaryEntry.Item1)) + : dictionaryEntries; + + foreach (var dictionaryEntry in dictionaryEntries) { - obj.Add(dictionaryEntry.Key.ToString(), PsObjectExtensions.ToJToken(dictionaryEntry.Value)); + obj.Add(dictionaryEntry.Item1, PsObjectExtensions.ToJToken(dictionaryEntry.Item2)); } } else diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs index f5990be04fbf..43e1e8db2bb0 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { using System.Collections; using System.Collections.Generic; + using System.Linq; using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; @@ -75,7 +76,8 @@ public sealed class NewAzureResourceCmdlet : ResourceManipulationCmdletBase /// Gets or sets the resource property object format. /// [Parameter(Mandatory = false, HelpMessage = "The output format of the resource properties.")] - public ResourceObjectFormat OutputObjectFormat { get; set; } + [ValidateNotNull] + public ResourceObjectFormat? OutputObjectFormat { get; set; } /// /// Initializes a new instance of the class. @@ -91,9 +93,13 @@ public NewAzureResourceCmdlet() protected override void OnProcessRecord() { base.OnProcessRecord(); + this.DetermineOutputObjectFormat(); + if (this.OutputObjectFormat == ResourceObjectFormat.Legacy) + { + this.WriteWarning("This cmdlet is using the legacy properties object format. This format is being deprecated. Please use '-OutputObjectFormat New' and update your scripts."); + } var resourceId = this.GetResourceId(); - this.ConfirmAction( this.Force, "Are you sure you want to create the following resource: "+ resourceId, @@ -123,10 +129,26 @@ protected override void OnProcessRecord() var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true) .WaitOnOperation(operationResult: operationResult); - this.WriteObject(result, this.OutputObjectFormat); + this.WriteObject(result, this.OutputObjectFormat.Value); }); } + /// + /// Determines the output object format. + /// + private void DetermineOutputObjectFormat() + { + if (this.Properties != null && this.OutputObjectFormat == null && this.Properties.TypeNames.Any(typeName => typeName.EqualsInsensitively(Constants.MicrosoftAzureResource))) + { + this.OutputObjectFormat = ResourceObjectFormat.New; + } + + if (this.OutputObjectFormat == null) + { + this.OutputObjectFormat = ResourceObjectFormat.Legacy; + } + } + /// /// Gets the resource body from the parameters. /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs index 66e3a922b6c6..94c3c025a6b1 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { using System.Collections; + using System.Linq; using System.Management.Automation; using System.Threading.Tasks; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; @@ -69,15 +70,8 @@ public sealed class SetAzureResourceCmdlet : ResourceManipulationCmdletBase /// Gets or sets the resource property object format. /// [Parameter(Mandatory = false, HelpMessage = "The output format of the resource properties.")] - public ResourceObjectFormat OutputObjectFormat { get; set; } - - /// - /// Initializes a new instance of the class. - /// - public SetAzureResourceCmdlet() - { - this.OutputObjectFormat = ResourceObjectFormat.Legacy; - } + [ValidateNotNull] + public ResourceObjectFormat? OutputObjectFormat { get; set; } /// /// Executes the cmdlet. @@ -85,10 +79,12 @@ public SetAzureResourceCmdlet() protected override void OnProcessRecord() { base.OnProcessRecord(); + this.DetermineOutputObjectFormat(); if (this.OutputObjectFormat == ResourceObjectFormat.Legacy) { this.WriteWarning("This cmdlet is using the legacy properties object format. This format is being deprecated. Please use '-OutputObjectFormat New' and update your scripts."); } + var resourceId = this.GetResourceId(); this.ConfirmAction( this.Force, @@ -128,10 +124,26 @@ protected override void OnProcessRecord() var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true) .WaitOnOperation(operationResult: operationResult); - this.WriteObject(result, this.OutputObjectFormat); + this.WriteObject(result, this.OutputObjectFormat.Value); }); } + /// + /// Determines the output object format. + /// + private void DetermineOutputObjectFormat() + { + if (this.Properties != null && this.OutputObjectFormat == null && this.Properties.TypeNames.Any(typeName => typeName.EqualsInsensitively(Constants.MicrosoftAzureResource))) + { + this.OutputObjectFormat = ResourceObjectFormat.New; + } + + if (this.OutputObjectFormat == null) + { + this.OutputObjectFormat = ResourceObjectFormat.Legacy; + } + } + /// /// Gets the resource body. /// diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestMoveAResourceTest.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestMoveAResourceTest.json index e1e65e4e9f60..b6c7b0d5786d 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestMoveAResourceTest.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestMoveAResourceTest.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "45531" + "45599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-request-id": [ - "e3564c8d-5df4-4426-8f6b-1b79564211d3" + "a2d0f160-4f7b-47f0-b8cf-6b50bb40be8e" ], "x-ms-correlation-request-id": [ - "e3564c8d-5df4-4426-8f6b-1b79564211d3" + "a2d0f160-4f7b-47f0-b8cf-6b50bb40be8e" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234006Z:e3564c8d-5df4-4426-8f6b-1b79564211d3" + "WESTUS:20150518T231013Z:a2d0f160-4f7b-47f0-b8cf-6b50bb40be8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:06 GMT" + "Mon, 18 May 2015 23:10:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6427?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk4314?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazQzMTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-request-id": [ - "01a9191c-1a26-4190-a139-edddd60007d9" + "10163787-6bc1-49ab-9b7b-1cae5bf316f7" ], "x-ms-correlation-request-id": [ - "01a9191c-1a26-4190-a139-edddd60007d9" + "10163787-6bc1-49ab-9b7b-1cae5bf316f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234007Z:01a9191c-1a26-4190-a139-edddd60007d9" + "WESTUS:20150518T231013Z:10163787-6bc1-49ab-9b7b-1cae5bf316f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:06 GMT" + "Mon, 18 May 2015 23:10:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6427?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk4314?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazQzMTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427\",\r\n \"name\": \"onesdk6427\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk4314\",\r\n \"name\": \"onesdk4314\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "9dd9fc0f-eaf9-482e-a21b-a0e812c02401" + "d6d06ccc-7ba7-4243-88e4-2cfb29ae3492" ], "x-ms-correlation-request-id": [ - "9dd9fc0f-eaf9-482e-a21b-a0e812c02401" + "d6d06ccc-7ba7-4243-88e4-2cfb29ae3492" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234007Z:9dd9fc0f-eaf9-482e-a21b-a0e812c02401" + "WESTUS:20150518T231013Z:d6d06ccc-7ba7-4243-88e4-2cfb29ae3492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:06 GMT" + "Mon, 18 May 2015 23:10:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY0MjcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk4314/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazQzMTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-request-id": [ - "af35f13f-c3a6-4a7c-9f76-3b9e79366d27" + "a5743487-8e15-40c4-8e43-aec3d4f81c0a" ], "x-ms-correlation-request-id": [ - "af35f13f-c3a6-4a7c-9f76-3b9e79366d27" + "a5743487-8e15-40c4-8e43-aec3d4f81c0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234007Z:af35f13f-c3a6-4a7c-9f76-3b9e79366d27" + "WESTUS:20150518T231013Z:a5743487-8e15-40c4-8e43-aec3d4f81c0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,14 +196,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:06 GMT" + "Mon, 18 May 2015 23:10:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6427/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk4314/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazQzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b43ddf84-f8b9-4769-a354-05e85e929a5c" + "westus:1eb8e049-09b6-4a3e-a13f-aad362e2fc8d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "cfca7231-c9e4-4f3a-8e82-344eb0a6baa8" + "e069553d-f61e-4e24-8399-dd6018ea0262" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234007Z:cfca7231-c9e4-4f3a-8e82-344eb0a6baa8" + "WESTUS:20150518T231014Z:e069553d-f61e-4e24-8399-dd6018ea0262" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:06 GMT" + "Mon, 18 May 2015 23:10:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6758?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk8543?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -280,16 +280,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14993" ], "x-ms-request-id": [ - "b5c7eeec-ff8f-4f63-b5be-5907bc3af4dc" + "f4cd2e09-8eb1-4f12-b397-80314630d5ce" ], "x-ms-correlation-request-id": [ - "b5c7eeec-ff8f-4f63-b5be-5907bc3af4dc" + "f4cd2e09-8eb1-4f12-b397-80314630d5ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234007Z:b5c7eeec-ff8f-4f63-b5be-5907bc3af4dc" + "WESTUS:20150518T231014Z:f4cd2e09-8eb1-4f12-b397-80314630d5ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -298,14 +298,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:06 GMT" + "Mon, 18 May 2015 23:10:13 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6758?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk8543?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -319,7 +319,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758\",\r\n \"name\": \"onesdk6758\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk8543\",\r\n \"name\": \"onesdk8543\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -334,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "1721e8e0-14b0-44fd-bba7-d8dd6d14436a" + "ed688154-d100-481a-aade-f34dfaa70933" ], "x-ms-correlation-request-id": [ - "1721e8e0-14b0-44fd-bba7-d8dd6d14436a" + "ed688154-d100-481a-aade-f34dfaa70933" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234007Z:1721e8e0-14b0-44fd-bba7-d8dd6d14436a" + "WESTUS:20150518T231014Z:ed688154-d100-481a-aade-f34dfaa70933" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,14 +352,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:07 GMT" + "Mon, 18 May 2015 23:10:14 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk8543/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NDMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -382,16 +382,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14992" ], "x-ms-request-id": [ - "d83a3741-65b4-42f3-9a7f-cc16af59a203" + "4bbc7928-314c-4396-9450-479e63f42bff" ], "x-ms-correlation-request-id": [ - "d83a3741-65b4-42f3-9a7f-cc16af59a203" + "4bbc7928-314c-4396-9450-479e63f42bff" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234007Z:d83a3741-65b4-42f3-9a7f-cc16af59a203" + "WESTUS:20150518T231014Z:4bbc7928-314c-4396-9450-479e63f42bff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,14 +400,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:07 GMT" + "Mon, 18 May 2015 23:10:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk6758/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk8543/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -433,16 +433,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f262583d-30d6-4998-9502-2bd54f45ec69" + "westus:bcda9047-19a7-49d4-a941-90461384047a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-correlation-request-id": [ - "80c9aac4-b1f3-4919-8778-0cf063ae95a7" + "55b89e57-c212-4e30-8129-97a64239e998" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234007Z:80c9aac4-b1f3-4919-8778-0cf063ae95a7" + "WESTUS:20150518T231014Z:55b89e57-c212-4e30-8129-97a64239e998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -451,14 +451,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:07 GMT" + "Mon, 18 May 2015 23:10:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/providers/Providers.Test/statefulResources/onesdk8769?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY0MjcvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazg3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk4314/providers/Providers.Test/statefulResources/onesdk8841?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazQzMTQvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazg4NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"key\": \"value\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { @@ -469,7 +469,7 @@ "119" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/providers/Providers.Test/statefulResources/onesdk8769\",\r\n \"name\": \"onesdk8769\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk4314/providers/Providers.Test/statefulResources/onesdk8841\",\r\n \"name\": \"onesdk8841\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "281" @@ -484,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:967f9f51-9f4f-4aac-a4d8-5f06ed83239f" + "westus:f721be87-40d6-4502-8ddf-42fe476e20bd" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "a53a2552-b73d-453b-94ce-52f1064e57d3" + "05e50589-0ac3-43b9-bec6-160b0a3c5723" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234009Z:a53a2552-b73d-453b-94ce-52f1064e57d3" + "WESTUS:20150518T231016Z:05e50589-0ac3-43b9-bec6-160b0a3c5723" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,7 +502,7 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:08 GMT" + "Mon, 18 May 2015 23:10:15 GMT" ] }, "StatusCode": 201 @@ -513,10 +513,10 @@ "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "45531" + "45599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -528,16 +528,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-request-id": [ - "e044eb04-ccc4-4259-9cf7-c50e14c3c726" + "a07fbbae-7c86-4575-b495-f48f6d99ec3a" ], "x-ms-correlation-request-id": [ - "e044eb04-ccc4-4259-9cf7-c50e14c3c726" + "a07fbbae-7c86-4575-b495-f48f6d99ec3a" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234010Z:e044eb04-ccc4-4259-9cf7-c50e14c3c726" + "WESTUS:20150518T231016Z:a07fbbae-7c86-4575-b495-f48f6d99ec3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -546,7 +546,7 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:09 GMT" + "Mon, 18 May 2015 23:10:16 GMT" ] }, "StatusCode": 200 @@ -557,10 +557,10 @@ "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "45531" + "45599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -572,16 +572,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-request-id": [ - "6b6e21a8-61ab-4c44-942b-3138d60bb945" + "3b7e285f-762d-46c0-97bc-3a4cfdbb5dcd" ], "x-ms-correlation-request-id": [ - "6b6e21a8-61ab-4c44-942b-3138d60bb945" + "3b7e285f-762d-46c0-97bc-3a4cfdbb5dcd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150515T234200Z:6b6e21a8-61ab-4c44-942b-3138d60bb945" + "WESTUS:20150518T231204Z:3b7e285f-762d-46c0-97bc-3a4cfdbb5dcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590,16 +590,16 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:42:00 GMT" + "Mon, 18 May 2015 23:12:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/moveResources?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY0MjcvbW92ZVJlc291cmNlcz9hcGktdmVyc2lvbj0yMDE1LTAxLTAx", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk4314/moveResources?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazQzMTQvbW92ZVJlc291cmNlcz9hcGktdmVyc2lvbj0yMDE1LTAxLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"targetResourceGroup\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758\",\r\n \"resources\": [\r\n \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6427/providers/Providers.Test/statefulResources/onesdk8769\"\r\n ]\r\n}", + "RequestBody": "{\r\n \"targetResourceGroup\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk8543\",\r\n \"resources\": [\r\n \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk4314/providers/Providers.Test/statefulResources/onesdk8841\"\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -626,13 +626,13 @@ "1196" ], "x-ms-request-id": [ - "707796e2-b445-4628-b420-7634c9696479" + "db111105-329d-4058-8370-cad521d2cdc1" ], "x-ms-correlation-request-id": [ - "707796e2-b445-4628-b420-7634c9696479" + "db111105-329d-4058-8370-cad521d2cdc1" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234010Z:707796e2-b445-4628-b420-7634c9696479" + "WESTUS:20150518T231017Z:db111105-329d-4058-8370-cad521d2cdc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -641,17 +641,17 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:10 GMT" + "Mon, 18 May 2015 23:10:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pRek1UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, @@ -670,16 +670,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14999" ], "x-ms-request-id": [ - "bbe70f95-e1c5-48c0-80b1-3b2c50d17deb" + "edb08701-2107-4cc8-a8c9-db52546d8bd3" ], "x-ms-correlation-request-id": [ - "bbe70f95-e1c5-48c0-80b1-3b2c50d17deb" + "edb08701-2107-4cc8-a8c9-db52546d8bd3" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234011Z:bbe70f95-e1c5-48c0-80b1-3b2c50d17deb" + "WESTUS:20150518T231018Z:edb08701-2107-4cc8-a8c9-db52546d8bd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -688,17 +688,17 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:10 GMT" + "Mon, 18 May 2015 23:10:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pRek1UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, @@ -717,16 +717,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14997" ], "x-ms-request-id": [ - "17980cbf-59d1-4e65-abe6-ffd8f2c4ecc1" + "0a9a1061-e1f7-41da-9f67-9769019221ff" ], "x-ms-correlation-request-id": [ - "17980cbf-59d1-4e65-abe6-ffd8f2c4ecc1" + "0a9a1061-e1f7-41da-9f67-9769019221ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234027Z:17980cbf-59d1-4e65-abe6-ffd8f2c4ecc1" + "WESTUS:20150518T231033Z:0a9a1061-e1f7-41da-9f67-9769019221ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,17 +735,17 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:26 GMT" + "Mon, 18 May 2015 23:10:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pRek1UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, @@ -764,16 +764,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14995" ], "x-ms-request-id": [ - "a9c5cad3-c7c7-4b8c-91d8-eabd28e08bee" + "daa63deb-5cbb-4fd1-aa91-f70aa8bc480c" ], "x-ms-correlation-request-id": [ - "a9c5cad3-c7c7-4b8c-91d8-eabd28e08bee" + "daa63deb-5cbb-4fd1-aa91-f70aa8bc480c" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234042Z:a9c5cad3-c7c7-4b8c-91d8-eabd28e08bee" + "WESTUS:20150518T231048Z:daa63deb-5cbb-4fd1-aa91-f70aa8bc480c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -782,17 +782,17 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:42 GMT" + "Mon, 18 May 2015 23:10:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pRek1UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, @@ -811,16 +811,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14998" ], "x-ms-request-id": [ - "6a13c6aa-0d23-4711-841d-b8b52751e4d1" + "f4eade99-5483-4e2f-9261-02fc494e5ac0" ], "x-ms-correlation-request-id": [ - "6a13c6aa-0d23-4711-841d-b8b52751e4d1" + "f4eade99-5483-4e2f-9261-02fc494e5ac0" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234057Z:6a13c6aa-0d23-4711-841d-b8b52751e4d1" + "WESTUS:20150518T231103Z:f4eade99-5483-4e2f-9261-02fc494e5ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,17 +829,17 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:40:56 GMT" + "Mon, 18 May 2015 23:11:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pRek1UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, @@ -858,16 +858,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14994" ], "x-ms-request-id": [ - "b06441dc-90c2-46d2-b8c3-efe819f294b4" + "49471e90-7d96-4dbc-a541-11f24840c81e" ], "x-ms-correlation-request-id": [ - "b06441dc-90c2-46d2-b8c3-efe819f294b4" + "49471e90-7d96-4dbc-a541-11f24840c81e" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234112Z:b06441dc-90c2-46d2-b8c3-efe819f294b4" + "WESTUS:20150518T231118Z:49471e90-7d96-4dbc-a541-11f24840c81e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -876,17 +876,17 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:41:12 GMT" + "Mon, 18 May 2015 23:11:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pRek1UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, @@ -905,16 +905,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14996" ], "x-ms-request-id": [ - "58b64c5a-5dc2-4df8-be21-af68f52ed174" + "8648a746-1a5a-42ce-9f91-49be4460385a" ], "x-ms-correlation-request-id": [ - "58b64c5a-5dc2-4df8-be21-af68f52ed174" + "8648a746-1a5a-42ce-9f91-49be4460385a" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234127Z:58b64c5a-5dc2-4df8-be21-af68f52ed174" + "WESTUS:20150518T231134Z:8648a746-1a5a-42ce-9f91-49be4460385a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -923,17 +923,17 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:41:27 GMT" + "Mon, 18 May 2015 23:11:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pRek1UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, @@ -952,16 +952,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-request-id": [ - "d7fad595-d321-40f7-a21e-96e79e36d630" + "70cff1ef-907c-4d3d-a1cb-52b3d74af11a" ], "x-ms-correlation-request-id": [ - "d7fad595-d321-40f7-a21e-96e79e36d630" + "70cff1ef-907c-4d3d-a1cb-52b3d74af11a" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T234143Z:d7fad595-d321-40f7-a21e-96e79e36d630" + "WESTUS:20150518T231149Z:70cff1ef-907c-4d3d-a1cb-52b3d74af11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -970,17 +970,17 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:41:42 GMT" + "Mon, 18 May 2015 23:11:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" + "https://management.azure.com/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzY0MjctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pZME1qY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLU9ORVNESzQzMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUWtGVVEwaE5UMVpGU2s5Q0xVOU9SVk5FU3pRek1UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, @@ -993,16 +993,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-request-id": [ - "93c0fddf-2fdc-4e1b-a9b4-84d553701448" + "404f418e-fb30-412f-bc0b-f6f046f9c1a8" ], "x-ms-correlation-request-id": [ - "93c0fddf-2fdc-4e1b-a9b4-84d553701448" + "404f418e-fb30-412f-bc0b-f6f046f9c1a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150515T234159Z:93c0fddf-2fdc-4e1b-a9b4-84d553701448" + "WESTUS:20150518T231204Z:404f418e-fb30-412f-bc0b-f6f046f9c1a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,18 +1011,18 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:41:58 GMT" + "Mon, 18 May 2015 23:12:03 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758/providers/Providers.Test/statefulResources/onesdk8769?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazY3NTgvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazg3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk8543/providers/Providers.Test/statefulResources/onesdk8841?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NDMvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazg4NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk6758/providers/Providers.Test/statefulResources/onesdk8769\",\r\n \"name\": \"onesdk8769\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk8543/providers/Providers.Test/statefulResources/onesdk8841\",\r\n \"name\": \"onesdk8841\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "281" @@ -1040,16 +1040,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:c3dd7857-8003-4b45-9044-d81813f11b96" + "westus:5cdda686-b9ef-4540-b521-e40ebb0998ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-correlation-request-id": [ - "c47c102a-8750-4ed0-b381-e3cac625335d" + "e01781e4-adc3-4e5e-b675-fab9d74b5ca7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150515T234201Z:c47c102a-8750-4ed0-b381-e3cac625335d" + "WESTUS:20150518T231204Z:e01781e4-adc3-4e5e-b675-fab9d74b5ca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1058,7 +1058,7 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 23:42:00 GMT" + "Mon, 18 May 2015 23:12:04 GMT" ] }, "StatusCode": 200 @@ -1066,9 +1066,9 @@ ], "Names": { "Test-MoveAResource": [ - "onesdk6427", - "onesdk6758", - "onesdk8769" + "onesdk4314", + "onesdk8543", + "onesdk8841" ] }, "Variables": { diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestSetAResourceTest.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestSetAResourceTest.json index 4f109f82cc81..c3e017f48b0e 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestSetAResourceTest.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestSetAResourceTest.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "45154" + "45599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14992" ], "x-ms-request-id": [ - "0d867688-5b55-4f6f-ad25-2efa9fa04103" + "c940a46f-da2e-4389-9630-bb353311c327" ], "x-ms-correlation-request-id": [ - "0d867688-5b55-4f6f-ad25-2efa9fa04103" + "c940a46f-da2e-4389-9630-bb353311c327" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203418Z:0d867688-5b55-4f6f-ad25-2efa9fa04103" + "WESTUS:20150518T231339Z:c940a46f-da2e-4389-9630-bb353311c327" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:17 GMT" + "Mon, 18 May 2015 23:13:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk7123?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxMjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk273?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazI3Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -61,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14991" ], "x-ms-request-id": [ - "13b20bcd-8ea1-444c-a270-232e1a0bd417" + "8491dd27-887c-429b-bb74-2d58487edb52" ], "x-ms-correlation-request-id": [ - "13b20bcd-8ea1-444c-a270-232e1a0bd417" + "8491dd27-887c-429b-bb74-2d58487edb52" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203418Z:13b20bcd-8ea1-444c-a270-232e1a0bd417" + "WESTUS:20150518T231340Z:8491dd27-887c-429b-bb74-2d58487edb52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:18 GMT" + "Mon, 18 May 2015 23:13:39 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk7123?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxMjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk273?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazI3Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -115,10 +115,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123\",\r\n \"name\": \"onesdk7123\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273\",\r\n \"name\": \"onesdk273\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -133,13 +133,13 @@ "1198" ], "x-ms-request-id": [ - "d00823df-3bf6-4dd4-abde-475f7480b69e" + "0b17c678-f89c-4b27-a9b2-fa4c27a31188" ], "x-ms-correlation-request-id": [ - "d00823df-3bf6-4dd4-abde-475f7480b69e" + "0b17c678-f89c-4b27-a9b2-fa4c27a31188" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203419Z:d00823df-3bf6-4dd4-abde-475f7480b69e" + "WESTUS:20150518T231340Z:0b17c678-f89c-4b27-a9b2-fa4c27a31188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:18 GMT" + "Mon, 18 May 2015 23:13:40 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazI3My9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14990" ], "x-ms-request-id": [ - "caaf851f-9bb5-4222-821e-4c1b61ca2ea8" + "97061486-bbc1-46fd-90ff-bac820716020" ], "x-ms-correlation-request-id": [ - "caaf851f-9bb5-4222-821e-4c1b61ca2ea8" + "97061486-bbc1-46fd-90ff-bac820716020" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203419Z:caaf851f-9bb5-4222-821e-4c1b61ca2ea8" + "WESTUS:20150518T231340Z:97061486-bbc1-46fd-90ff-bac820716020" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,14 +196,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:18 GMT" + "Mon, 18 May 2015 23:13:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk7123/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourcegroups/onesdk273/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlZ3JvdXBzL29uZXNkazI3My9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -229,16 +229,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e3bbf9d2-68cc-48a0-9620-8d790a1f8580" + "westus:83463aa4-2172-406b-9cbc-62763e437ea8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "77eca5ce-cc35-4b72-980c-67e6bfd588ae" + "67681f10-ed18-47fe-8285-6d4d1701c663" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203419Z:77eca5ce-cc35-4b72-980c-67e6bfd588ae" + "WESTUS:20150518T231340Z:67681f10-ed18-47fe-8285-6d4d1701c663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,14 +247,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:18 GMT" + "Mon, 18 May 2015 23:13:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazY1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273/providers/Providers.Test/statefulResources/onesdk8548?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazI3My9wcm92aWRlcnMvUHJvdmlkZXJzLlRlc3Qvc3RhdGVmdWxSZXNvdXJjZXMvb25lc2RrODU0OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"key\": \"value\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { @@ -265,10 +265,10 @@ "119" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593\",\r\n \"name\": \"onesdk6593\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273/providers/Providers.Test/statefulResources/onesdk8548\",\r\n \"name\": \"onesdk8548\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -280,16 +280,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:31879f13-c3ef-4a05-b49d-bc409046c04b" + "westus:95dba4b7-fa87-4f13-8b10-6a92c7505ecf" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "6c67747e-572a-4d9e-a33b-4f960758d102" + "c6d7e1bd-9251-4f37-8dc0-1ad4507e366f" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203422Z:6c67747e-572a-4d9e-a33b-4f960758d102" + "WESTUS:20150518T231341Z:c6d7e1bd-9251-4f37-8dc0-1ad4507e366f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -298,14 +298,14 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:22 GMT" + "Mon, 18 May 2015 23:13:41 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazY1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273/providers/Providers.Test/statefulResources/onesdk8548?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazI3My9wcm92aWRlcnMvUHJvdmlkZXJzLlRlc3Qvc3RhdGVmdWxSZXNvdXJjZXMvb25lc2RrODU0OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { @@ -316,10 +316,10 @@ "121" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593\",\r\n \"name\": \"onesdk6593\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key2\": \"value2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273/providers/Providers.Test/statefulResources/onesdk8548\",\r\n \"name\": \"onesdk8548\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key2\": \"value2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "283" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,16 +334,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4a7a2893-5f1e-4c89-ace1-b10e0e823713" + "westus:411f050b-010c-4635-8c44-7f2b262c6042" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "75c8c3c0-e54f-422d-bf0f-c3eeb69ffc5c" + "c349cebd-41a6-46c2-8421-0a141e729524" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203424Z:75c8c3c0-e54f-422d-bf0f-c3eeb69ffc5c" + "WESTUS:20150518T231344Z:c349cebd-41a6-46c2-8421-0a141e729524" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,7 +352,7 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:23 GMT" + "Mon, 18 May 2015 23:13:44 GMT" ] }, "StatusCode": 200 @@ -363,10 +363,10 @@ "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.compute\",\r\n \"namespace\": \"microsoft.compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.network\",\r\n \"namespace\": \"microsoft.network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.storage\",\r\n \"namespace\": \"microsoft.storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/microsoft.web\",\r\n \"namespace\": \"microsoft.web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "45154" + "45599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -378,16 +378,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-request-id": [ - "f89e6d4d-cefe-4abe-8474-1ffe2a1c4b34" + "1f6959a6-8c80-4dd9-8481-47a77f179c95" ], "x-ms-correlation-request-id": [ - "f89e6d4d-cefe-4abe-8474-1ffe2a1c4b34" + "1f6959a6-8c80-4dd9-8481-47a77f179c95" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203423Z:f89e6d4d-cefe-4abe-8474-1ffe2a1c4b34" + "WESTUS:20150518T231342Z:1f6959a6-8c80-4dd9-8481-47a77f179c95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -396,21 +396,21 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:22 GMT" + "Mon, 18 May 2015 23:13:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazY1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273/providers/Providers.Test/statefulResources/onesdk8548?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazI3My9wcm92aWRlcnMvUHJvdmlkZXJzLlRlc3Qvc3RhdGVmdWxSZXNvdXJjZXMvb25lc2RrODU0OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593\",\r\n \"name\": \"onesdk6593\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273/providers/Providers.Test/statefulResources/onesdk8548\",\r\n \"name\": \"onesdk8548\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "281" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -425,16 +425,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:87fcbfb3-6e23-4094-b267-abd5bfb6a907" + "westus:60e493cd-ad95-41a3-870f-beb5b7febb86" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "9081e3dc-abfa-4cf6-8f7f-825d28f6cc34" + "0da79ef0-e272-4426-9f7a-457ade6479e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203424Z:9081e3dc-abfa-4cf6-8f7f-825d28f6cc34" + "WESTUS:20150518T231343Z:0da79ef0-e272-4426-9f7a-457ade6479e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,21 +443,21 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:23 GMT" + "Mon, 18 May 2015 23:13:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazcxMjMvcHJvdmlkZXJzL1Byb3ZpZGVycy5UZXN0L3N0YXRlZnVsUmVzb3VyY2VzL29uZXNkazY1OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273/providers/Providers.Test/statefulResources/onesdk8548?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiNTk4ZmMtZTU3YS00MjNmLWIyZTctZGMwZGRiNjMxZjFmL3Jlc291cmNlR3JvdXBzL29uZXNkazI3My9wcm92aWRlcnMvUHJvdmlkZXJzLlRlc3Qvc3RhdGVmdWxSZXNvdXJjZXMvb25lc2RrODU0OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": {}, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk7123/providers/Providers.Test/statefulResources/onesdk6593\",\r\n \"name\": \"onesdk6593\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key2\": \"value2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38b598fc-e57a-423f-b2e7-dc0ddb631f1f/resourceGroups/onesdk273/providers/Providers.Test/statefulResources/onesdk8548\",\r\n \"name\": \"onesdk8548\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"key2\": \"value2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "283" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,16 +472,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f91017b1-8e8f-4e76-9668-8f03dc543f90" + "westus:57b83e7b-2081-4286-ac1a-401811004567" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14989" ], "x-ms-correlation-request-id": [ - "f4454186-4692-49e4-86c4-8e69fa7049ba" + "d8efaa66-06e2-4589-8246-ddc1eddee216" ], "x-ms-routing-request-id": [ - "WESTUS:20150515T203425Z:f4454186-4692-49e4-86c4-8e69fa7049ba" + "WESTUS:20150518T231345Z:d8efaa66-06e2-4589-8246-ddc1eddee216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,7 +490,7 @@ "no-cache" ], "Date": [ - "Fri, 15 May 2015 20:34:24 GMT" + "Mon, 18 May 2015 23:13:45 GMT" ] }, "StatusCode": 200 @@ -498,8 +498,8 @@ ], "Names": { "Test-SetAResource": [ - "onesdk7123", - "onesdk6593" + "onesdk273", + "onesdk8548" ] }, "Variables": { From faddde851cc4e9adb46070def718e1c02914dde2 Mon Sep 17 00:00:00 2001 From: Sethu Srinivasan Date: Tue, 19 May 2015 06:53:56 -0700 Subject: [PATCH 33/40] Get-AzureVMSqlServerExtension was not reporting back "AutoBackup" and "AutoPatching" configurations. SQL VSTS# 4295279 - Extension status cmdlet does not show Backup/Patching settings Issue: - Extension name was not fully qualified when we were enumerating Extension Statuses Fix: - construct fully qualified Extension handler name like Microsoft.SqlServer.Management.SqlIaaSAgent - This approach is similar to DSC extension's get cmdlet --- .../Extensions/SqlServer/GetAzureVMSqlServerExtension.cs | 5 ++++- .../Extensions/SqlServer/SetAzureVMSqlServerExtension.cs | 2 +- .../VirtualMachineSqlServerExtensionCmdletBase.cs | 8 ++++---- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/GetAzureVMSqlServerExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/GetAzureVMSqlServerExtension.cs index 7e2f36cb33c6..0b595acded84 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/GetAzureVMSqlServerExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/GetAzureVMSqlServerExtension.cs @@ -68,6 +68,9 @@ protected override void ProcessRecord() /// private VirtualMachineSqlServerExtensionContext GetExtensionContext(ResourceExtensionReference r) { + string extensionName= VirtualMachineSqlServerExtensionCmdletBase.ExtensionPublishedNamespace + "." + + VirtualMachineSqlServerExtensionCmdletBase.ExtensionPublishedName; + VirtualMachineSqlServerExtensionContext context = new VirtualMachineSqlServerExtensionContext { ExtensionName = r.Name, @@ -90,7 +93,7 @@ private VirtualMachineSqlServerExtensionContext GetExtensionContext(ResourceExte foreach (NSM.ResourceExtensionStatus res in extensionStatusList) { // Expected ReferenceName = "Microsoft.SqlServer.Management.SqlIaaSAgent" - if (!res.HandlerName.Equals(r.ReferenceName, System.StringComparison.InvariantCulture)) + if (!res.HandlerName.Equals(extensionName, System.StringComparison.InvariantCulture)) { // skip all non-sql extensions continue; diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/SetAzureVMSqlServerExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/SetAzureVMSqlServerExtension.cs index fbce66eab59a..f9ed5f72e5ca 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/SetAzureVMSqlServerExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/SetAzureVMSqlServerExtension.cs @@ -109,7 +109,7 @@ internal void ExecuteCommand() protected override void ValidateParameters() { base.ValidateParameters(); - this.ReferenceName = string.IsNullOrEmpty(this.ReferenceName) ? ExtensionDefaultName : this.ReferenceName; + this.ReferenceName = string.IsNullOrEmpty(this.ReferenceName) ? ExtensionPublishedName : this.ReferenceName; this.SetupAutoTelemetrySettings(); this.PublicConfiguration = GetPublicConfiguration(); this.PrivateConfiguration = GetPrivateConfiguration(); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/VirtualMachineSqlServerExtensionCmdletBase.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/VirtualMachineSqlServerExtensionCmdletBase.cs index 4844e883dc90..dc20d5941623 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/VirtualMachineSqlServerExtensionCmdletBase.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/VirtualMachineSqlServerExtensionCmdletBase.cs @@ -28,12 +28,12 @@ public class VirtualMachineSqlServerExtensionCmdletBase : VirtualMachineExtensio /// /// Extension's publisher name /// - protected const string ExtensionDefaultPublisher = "Microsoft.SqlServer.Management"; + protected const string ExtensionPublishedNamespace = "Microsoft.SqlServer.Management"; /// /// Extension's name - /// - protected const string ExtensionDefaultName = "SqlIaaSAgent"; + protected const string ExtensionPublishedName = "SqlIaaSAgent"; /// /// Extension's default version @@ -60,8 +60,8 @@ public class VirtualMachineSqlServerExtensionCmdletBase : VirtualMachineExtensio /// public VirtualMachineSqlServerExtensionCmdletBase() { - base.publisherName = ExtensionDefaultPublisher; - base.extensionName = ExtensionDefaultName; + base.publisherName = ExtensionPublishedNamespace; + base.extensionName = ExtensionPublishedName; } /// From 7982004b707a0375e7ea61428ebe9486e5de22d9 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Tue, 19 May 2015 12:17:41 -0700 Subject: [PATCH 34/40] Update Common.Authentication dll to pick up graph and gallery mooncake endpoints --- .../Commands.Common.Storage.csproj | 2 +- .../Commands.Common.Storage/packages.config | 2 +- .../Commands.Common.Test.csproj | 2 +- .../Commands.Common.Test/packages.config | 2 +- .../Commands.Common/Commands.Common.csproj | 2 +- src/Common/Commands.Common/packages.config | 2 +- .../Commands.Profile/Commands.Profile.csproj | 2 +- src/Common/Commands.Profile/packages.config | 2 +- .../Commands.ScenarioTest.csproj | 2 +- .../ResourceManagerTests.cs | 64 +++++++++++++++++++ .../Commands.ScenarioTest/packages.config | 2 +- .../Commands.ScenarioTests.Common.csproj | 2 +- .../packages.config | 2 +- .../Commands.ApiManagement.Test.csproj | 2 +- .../packages.config | 2 +- .../Commands.ApiManagement.csproj | 2 +- .../Commands.ApiManagement/packages.config | 2 +- ....ResourceManagement.Automation.Test.csproj | 2 +- .../Commands.Automation.Test/packages.config | 2 +- ...mands.ResourceManagement.Automation.csproj | 2 +- .../Commands.Automation/packages.config | 4 +- .../Commands.Batch.Test.csproj | 2 +- .../Batch/Commands.Batch.Test/packages.config | 2 +- .../Commands.Batch/Commands.Batch.csproj | 2 +- .../Batch/Commands.Batch/packages.config | 2 +- .../Commands.Compute.Test.csproj | 2 +- .../Commands.Compute.Test/packages.config | 2 +- .../Commands.Compute/Commands.Compute.csproj | 2 +- .../Compute/Commands.Compute/packages.config | 2 +- .../Commands.DataFactories.Test.csproj | 2 +- .../packages.config | 2 +- .../Commands.DataFactories.csproj | 2 +- .../Commands.DataFactories/packages.config | 2 +- .../Commands.Dns.Test.csproj | 2 +- .../Dns/Commands.Dns.Test/packages.config | 2 +- .../Dns/Commands.Dns/Commands.Dns.csproj | 2 +- .../Dns/Commands.Dns/packages.config | 2 +- .../Commands.Insights.Test.csproj | 2 +- .../Commands.Insights.Test/packages.config | 2 +- .../Commands.Insights.csproj | 2 +- .../Commands.Insights/packages.config | 2 +- .../Commands.KeyVault.Test.csproj | 6 +- .../Commands.KeyVault.Test/packages.config | 6 +- .../Commands.KeyVault.csproj | 2 +- .../Commands.KeyVault/packages.config | 4 +- .../Commands.Network.Test.csproj | 2 +- .../Commands.Network.Test/packages.config | 2 +- .../Commands.Network/Commands.Network.csproj | 2 +- .../Network/Commands.Network/packages.config | 2 +- .../Commands.RedisCache.Test.csproj | 2 +- .../Commands.RedisCache.Test/packages.config | 2 +- .../Commands.RedisCache.csproj | 2 +- .../Commands.RedisCache/packages.config | 2 +- .../Commands.ResourceManager.Cmdlets.csproj | 2 +- .../Cmdlets/packages.config | 2 +- .../Commands.Resources.Test.csproj | 2 +- .../Commands.Resources.Test/packages.config | 2 +- .../Commands.Resources.csproj | 2 +- .../Commands.Resources/packages.config | 2 +- .../Commands.Sql.Test.csproj | 2 +- .../Sql/Commands.Sql.Test/packages.config | 2 +- .../Sql/Commands.Sql/Commands.Sql.csproj | 2 +- .../Sql/Commands.Sql/packages.config | 2 +- .../Commands.StreamAnalytics.Test.csproj | 2 +- .../packages.config | 2 +- .../Commands.StreamAnalytics.csproj | 2 +- .../Commands.StreamAnalytics/packages.config | 2 +- .../Tags/Commands.Tags/Commands.Tags.csproj | 2 +- .../Tags/Commands.Tags/packages.config | 2 +- .../Commands.TrafficManager2.Test.csproj | 2 +- .../packages.config | 2 +- .../Commands.TrafficManager2.csproj | 2 +- .../Commands.TrafficManager2/packages.config | 2 +- .../Commands.Websites.Test.csproj | 2 +- .../Commands.Websites.Test/packages.config | 2 +- .../Commands.Websites.csproj | 2 +- .../Commands.Websites/packages.config | 2 +- .../Commands.Automation.Test.csproj | 2 +- .../Commands.Automation.Test/packages.config | 2 +- .../Commands.Automation.csproj | 2 +- .../Commands.Automation/packages.config | 2 +- ...s.ServiceManagement.Extensions.Test.csproj | 2 +- .../packages.config | 2 +- ...eManagement.PlatformImageRepository.csproj | 2 +- .../packages.config | 2 +- .../Commands.ServiceManagement.Preview.csproj | 2 +- .../packages.config | 2 +- .../Commands.ServiceManagement.Test.csproj | 2 +- .../packages.config | 2 +- .../Commands.ServiceManagement.csproj | 2 +- .../packages.config | 2 +- .../Commands.ExpressRoute.csproj | 2 +- .../Commands.ExpressRoute/packages.config | 2 +- .../Commands.HDInsight.Test.csproj | 2 +- .../Commands.HDInsight.Test/packages.config | 2 +- .../Commands.HDInsight.csproj | 2 +- .../Commands.HDInsight/packages.config | 2 +- .../Commands.ManagedCache.Test.csproj | 2 +- .../packages.config | 2 +- .../Commands.ManagedCache.csproj | 2 +- .../Commands.ManagedCache/packages.config | 2 +- ...ands.ServiceManagement.Network.Test.csproj | 4 +- .../Commands.Network.Test/packages.config | 2 +- .../Commands.ServiceManagement.Network.csproj | 2 +- .../Network/Commands.Network/packages.config | 2 +- .../Commands.RecoveryServices.Test.csproj | 2 +- .../packages.config | 2 +- .../Commands.RecoveryServices.csproj | 2 +- .../Commands.RecoveryServices/packages.config | 2 +- .../Commands.RemoteApp.csproj | 2 +- .../Commands.RemoteApp/packages.config | 2 +- .../Commands.Test.Utilities.csproj | 2 +- .../Commands.Test.Utilities/packages.config | 2 +- .../Commands.Test/Commands.Test.csproj | 2 +- .../Services/Commands.Test/packages.config | 2 +- .../Commands.Utilities.csproj | 2 +- .../Commands.Utilities/packages.config | 2 +- .../Services/Commands/Commands.csproj | 2 +- .../Services/Commands/packages.config | 2 +- .../Commands.SqlDatabase.Test.csproj | 2 +- .../Commands.SqlDatabase.Test/packages.config | 2 +- .../Commands.SqlDatabase.csproj | 2 +- .../Sql/Commands.SqlDatabase/packages.config | 2 +- .../Commands.StorSimple.Test.csproj | 3 +- .../Commands.StorSimple.Test/packages.config | 2 +- .../Commands.StorSimple.csproj | 2 +- .../Commands.StorSimple/packages.config | 2 +- .../Commands.Storage.Test.csproj | 2 +- .../Commands.Storage.Test/packages.config | 2 +- .../Commands.Storage/Commands.Storage.csproj | 2 +- .../Storage/Commands.Storage/packages.config | 2 +- .../Commands.TrafficManager.Test.csproj | 2 +- .../packages.config | 2 +- .../Commands.TrafficManager.csproj | 2 +- .../Commands.TrafficManager/packages.config | 2 +- 135 files changed, 207 insertions(+), 140 deletions(-) create mode 100644 src/Common/Commands.ScenarioTest/ResourceManagerTests/ResourceManagerTests.cs diff --git a/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj b/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj index 11f0f06bdaf7..3fab2c3b6495 100644 --- a/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj +++ b/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj @@ -58,7 +58,7 @@ False - ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/Common/Commands.Common.Storage/packages.config b/src/Common/Commands.Common.Storage/packages.config index a0e61d61656e..2aca28850cd0 100644 --- a/src/Common/Commands.Common.Storage/packages.config +++ b/src/Common/Commands.Common.Storage/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/Common/Commands.Common.Test/Commands.Common.Test.csproj b/src/Common/Commands.Common.Test/Commands.Common.Test.csproj index 8c20fe185353..0b15746ed7a3 100644 --- a/src/Common/Commands.Common.Test/Commands.Common.Test.csproj +++ b/src/Common/Commands.Common.Test/Commands.Common.Test.csproj @@ -58,7 +58,7 @@ False - ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/Common/Commands.Common.Test/packages.config b/src/Common/Commands.Common.Test/packages.config index d84f728b2d08..d6fc3a993dea 100644 --- a/src/Common/Commands.Common.Test/packages.config +++ b/src/Common/Commands.Common.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/Common/Commands.Common/Commands.Common.csproj b/src/Common/Commands.Common/Commands.Common.csproj index f61325fa7405..4132a9f8ece4 100644 --- a/src/Common/Commands.Common/Commands.Common.csproj +++ b/src/Common/Commands.Common/Commands.Common.csproj @@ -60,7 +60,7 @@ False - ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/Common/Commands.Common/packages.config b/src/Common/Commands.Common/packages.config index 4649bcaa4db4..a6b3983ae963 100644 --- a/src/Common/Commands.Common/packages.config +++ b/src/Common/Commands.Common/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/Common/Commands.Profile/Commands.Profile.csproj b/src/Common/Commands.Profile/Commands.Profile.csproj index 98af4e27dc2e..50774538bb95 100644 --- a/src/Common/Commands.Profile/Commands.Profile.csproj +++ b/src/Common/Commands.Profile/Commands.Profile.csproj @@ -55,7 +55,7 @@ False - ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/Common/Commands.Profile/packages.config b/src/Common/Commands.Profile/packages.config index 69508eac4cf0..b698f6cb7d2c 100644 --- a/src/Common/Commands.Profile/packages.config +++ b/src/Common/Commands.Profile/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index e09d09c76153..71d370a137c7 100644 --- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -48,7 +48,7 @@ False - ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/Common/Commands.ScenarioTest/ResourceManagerTests/ResourceManagerTests.cs b/src/Common/Commands.ScenarioTest/ResourceManagerTests/ResourceManagerTests.cs new file mode 100644 index 000000000000..67b67df7b297 --- /dev/null +++ b/src/Common/Commands.ScenarioTest/ResourceManagerTests/ResourceManagerTests.cs @@ -0,0 +1,64 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using System.IO; +using System.Linq; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using Microsoft.WindowsAzure.Commands.ScenarioTest.Common; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.Azure.Test; +using Xunit; +using Microsoft.Azure.Common.Authentication; + +namespace Microsoft.WindowsAzure.Commands.ScenarioTest +{ + public class ResourceManagerTests + { + private EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] + [Trait(Category.Service, Category.ResourceManager)] + public void TestResourceManagerEndToEnd() + { + this.RunPowerShellTest("Test-ResourceManager"); + } + + protected void SetupManagementClients() + { + helper.SetupSomeOfManagementClients(); + } + + protected void RunPowerShellTest(params string[] scripts) + { + using (UndoContext context = UndoContext.Current) + { + context.Start(TestUtilities.GetCallingClass(1), TestUtilities.GetCurrentMethodName(2)); + + SetupManagementClients(); + + List modules = Directory.GetFiles("Resources\\ResourceManager", "*.ps1").ToList(); + modules.Add("Common.ps1"); + modules.Add(@"..\..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureResourceManager.psd1"); + + helper.SetupEnvironment(AzureModule.AzureResourceManager); + helper.SetupModules(modules.ToArray()); + + helper.RunPowerShellTest(scripts); + } + } + } +} diff --git a/src/Common/Commands.ScenarioTest/packages.config b/src/Common/Commands.ScenarioTest/packages.config index 6b1e12f910ca..5b7fcedede9a 100644 --- a/src/Common/Commands.ScenarioTest/packages.config +++ b/src/Common/Commands.ScenarioTest/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj b/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj index 7c447d1937b0..706bc4f1f5e6 100644 --- a/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj +++ b/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj @@ -47,7 +47,7 @@ False - ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/Common/Commands.ScenarioTests.Common/packages.config b/src/Common/Commands.ScenarioTests.Common/packages.config index 939dbabc26f9..bf23f6079419 100644 --- a/src/Common/Commands.ScenarioTests.Common/packages.config +++ b/src/Common/Commands.ScenarioTests.Common/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj index 74a276c70735..312b0c9fdd2e 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj @@ -42,7 +42,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config index e0df491994e1..6ee109e31119 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj index ed8cf4f730cf..e4c9312b796b 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj @@ -60,7 +60,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/packages.config b/src/ResourceManager/ApiManagement/Commands.ApiManagement/packages.config index c196a7f2a198..94189ff86969 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/packages.config +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/Commands.ResourceManagement.Automation.Test.csproj b/src/ResourceManager/Automation/Commands.Automation.Test/Commands.ResourceManagement.Automation.Test.csproj index 764aa1c0d2d9..d06f40fbb192 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/Commands.ResourceManagement.Automation.Test.csproj +++ b/src/ResourceManager/Automation/Commands.Automation.Test/Commands.ResourceManagement.Automation.Test.csproj @@ -55,7 +55,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/packages.config b/src/ResourceManager/Automation/Commands.Automation.Test/packages.config index dc03e31cfc83..342f3bed231b 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/packages.config +++ b/src/ResourceManager/Automation/Commands.Automation.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Automation/Commands.Automation/Commands.ResourceManagement.Automation.csproj b/src/ResourceManager/Automation/Commands.Automation/Commands.ResourceManagement.Automation.csproj index 42f8ece6b025..9761d68d1ca8 100644 --- a/src/ResourceManager/Automation/Commands.Automation/Commands.ResourceManagement.Automation.csproj +++ b/src/ResourceManager/Automation/Commands.Automation/Commands.ResourceManagement.Automation.csproj @@ -61,7 +61,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.22-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ResourceManager/Automation/Commands.Automation/packages.config b/src/ResourceManager/Automation/Commands.Automation/packages.config index 64097b58e5d9..da9f1113078e 100644 --- a/src/ResourceManager/Automation/Commands.Automation/packages.config +++ b/src/ResourceManager/Automation/Commands.Automation/packages.config @@ -2,8 +2,9 @@ - + + @@ -11,6 +12,5 @@ - \ No newline at end of file diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj b/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj index cd61dba37c0b..7ef4cac2382b 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj +++ b/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj @@ -52,7 +52,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/packages.config b/src/ResourceManager/Batch/Commands.Batch.Test/packages.config index 85f0df830483..07e7a6206d53 100644 --- a/src/ResourceManager/Batch/Commands.Batch.Test/packages.config +++ b/src/ResourceManager/Batch/Commands.Batch.Test/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj b/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj index 9a1e19673dcb..edebd3d54da0 100644 --- a/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj +++ b/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj @@ -53,7 +53,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Batch/Commands.Batch/packages.config b/src/ResourceManager/Batch/Commands.Batch/packages.config index 532a1cd53900..3f75eaf2d14f 100644 --- a/src/ResourceManager/Batch/Commands.Batch/packages.config +++ b/src/ResourceManager/Batch/Commands.Batch/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj index 01b609058010..b40e9aa9d5ec 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -50,7 +50,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config index bf9dfd4d44e7..1ba8a0767592 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 1e1cf1482139..21a806c5d59f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -61,7 +61,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Compute/Commands.Compute/packages.config b/src/ResourceManager/Compute/Commands.Compute/packages.config index 011071080379..e6a691757da6 100644 --- a/src/ResourceManager/Compute/Commands.Compute/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj index 7ce5a797b747..2a7c6ad6af41 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj @@ -50,7 +50,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config index 77f438ee7641..a89699bf2ff3 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj index 642b7ab11d19..39c56e72a5bd 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj @@ -56,7 +56,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config b/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config index 87d647973c3d..fb4cb877345a 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj b/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj index 10c9b805c121..e39928c8680f 100644 --- a/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj +++ b/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj @@ -51,7 +51,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.21-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ResourceManager/Dns/Commands.Dns.Test/packages.config b/src/ResourceManager/Dns/Commands.Dns.Test/packages.config index 42dbd8ac2225..c6135ab3eac9 100644 --- a/src/ResourceManager/Dns/Commands.Dns.Test/packages.config +++ b/src/ResourceManager/Dns/Commands.Dns.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj b/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj index 3d915957b1ca..146fa8aa4468 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj +++ b/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj @@ -93,7 +93,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.21-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ResourceManager/Dns/Commands.Dns/packages.config b/src/ResourceManager/Dns/Commands.Dns/packages.config index aabbd7804586..5eb3ca8cd2d6 100644 --- a/src/ResourceManager/Dns/Commands.Dns/packages.config +++ b/src/ResourceManager/Dns/Commands.Dns/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj index 3ebbad2708b3..63025be314c1 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj +++ b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj @@ -52,7 +52,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config index e9b43edecfda..4c8911d63151 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config +++ b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj index 7135216956bf..1464fcea796a 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj +++ b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj @@ -51,7 +51,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Insights/Commands.Insights/packages.config b/src/ResourceManager/Insights/Commands.Insights/packages.config index 22de9e39c385..5ce36805dca8 100644 --- a/src/ResourceManager/Insights/Commands.Insights/packages.config +++ b/src/ResourceManager/Insights/Commands.Insights/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj index 5e0896dd5ccf..7306279944d4 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj @@ -58,7 +58,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False @@ -93,6 +93,10 @@ False ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + False ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config index e8544ab4cf29..440ca63c2938 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/packages.config @@ -2,19 +2,19 @@ - + - + - + diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj index 189764bcc79f..3fb424e50fe8 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj @@ -114,7 +114,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config b/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config index 982ea4710a88..cce76fa5593b 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/packages.config @@ -2,7 +2,7 @@ - + @@ -12,7 +12,7 @@ - + diff --git a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj index e06a6670ff18..9cff8e9f8d13 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj +++ b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj @@ -50,7 +50,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Network/Commands.Network.Test/packages.config b/src/ResourceManager/Network/Commands.Network.Test/packages.config index f1168f32b707..6944adfefe0d 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/packages.config +++ b/src/ResourceManager/Network/Commands.Network.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj index 81921cfe3a4c..bde995164532 100644 --- a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj +++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj @@ -56,7 +56,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Network/Commands.Network/packages.config b/src/ResourceManager/Network/Commands.Network/packages.config index 5f78de1edfae..5ffd69dd0a2e 100644 --- a/src/ResourceManager/Network/Commands.Network/packages.config +++ b/src/ResourceManager/Network/Commands.Network/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj index 5184536e6c8f..f37f0a9e1234 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj @@ -51,7 +51,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config index 0808dfed77ce..67dc882875a6 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj index e64d0da8d04a..dffff11bef7f 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj @@ -54,7 +54,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config index a64748a567b1..10f583a2d573 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj index 599ec9ad477e..32c157a682fd 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj @@ -56,7 +56,7 @@ False - ..\..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.21-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/packages.config b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/packages.config index 2b74e67a8b2b..137cf646100e 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/packages.config +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj index 8ae583c8e21e..12413df45d00 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj @@ -52,7 +52,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/packages.config b/src/ResourceManager/Resources/Commands.Resources.Test/packages.config index 1c69bc4f87c4..9a214fc8de2a 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/packages.config +++ b/src/ResourceManager/Resources/Commands.Resources.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index b085c5851122..8e42605dbe46 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -56,7 +56,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Resources/Commands.Resources/packages.config b/src/ResourceManager/Resources/Commands.Resources/packages.config index 3e15c812693c..f5180df2c657 100644 --- a/src/ResourceManager/Resources/Commands.Resources/packages.config +++ b/src/ResourceManager/Resources/Commands.Resources/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index 178770b171f7..c05d752340fa 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -52,7 +52,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config index 376fa069bf62..2de699462e2e 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index 1ad47f943008..fdb9d37c0801 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -193,7 +193,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ResourceManager/Sql/Commands.Sql/packages.config b/src/ResourceManager/Sql/Commands.Sql/packages.config index f76c0b66c2b3..92e8886c6acb 100644 --- a/src/ResourceManager/Sql/Commands.Sql/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj index eb48995b9c08..231fd205192f 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj @@ -49,7 +49,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/packages.config b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/packages.config index 84d302f8439c..1a6071123160 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/packages.config +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj index 370701ba4340..34ff68e8014b 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj @@ -56,7 +56,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config index d51106b03b2f..75724f2eac53 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj index 6d71f0729512..0a91a8ec0370 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj +++ b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj @@ -56,7 +56,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Tags/Commands.Tags/packages.config b/src/ResourceManager/Tags/Commands.Tags/packages.config index 69508eac4cf0..b698f6cb7d2c 100644 --- a/src/ResourceManager/Tags/Commands.Tags/packages.config +++ b/src/ResourceManager/Tags/Commands.Tags/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj index 2c74d19f87b0..b11bc80cd3a5 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj @@ -46,7 +46,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/packages.config b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/packages.config index 240344432604..3880e6219b4e 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/packages.config +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager2.csproj b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager2.csproj index a0af03f9367c..b45f755f9521 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager2.csproj +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/Commands.TrafficManager2.csproj @@ -53,7 +53,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Management.TrafficManager.0.9.1-preview\lib\portable-net45+sl50+wp80+win\Microsoft.Azure.Management.TrafficManager.dll diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config index 2805ad7fbf82..236dabf32812 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj index ab258b8c7730..dfbeff560112 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj +++ b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj @@ -48,7 +48,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config index 24fd28a9e208..e37b4199493e 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj index 7ed0a54b8b4a..5abfa0683109 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj +++ b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj @@ -56,7 +56,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ResourceManager/Websites/Commands.Websites/packages.config b/src/ResourceManager/Websites/Commands.Websites/packages.config index 77064206a6b0..2379576e894b 100644 --- a/src/ResourceManager/Websites/Commands.Websites/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj b/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj index a2a71bdd9193..b697fec25a9a 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj @@ -57,7 +57,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/packages.config b/src/ServiceManagement/Automation/Commands.Automation.Test/packages.config index dc03e31cfc83..342f3bed231b 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/packages.config +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Automation/Commands.Automation/Commands.Automation.csproj b/src/ServiceManagement/Automation/Commands.Automation/Commands.Automation.csproj index 3db6ce6344e3..f9f37360bad4 100644 --- a/src/ServiceManagement/Automation/Commands.Automation/Commands.Automation.csproj +++ b/src/ServiceManagement/Automation/Commands.Automation/Commands.Automation.csproj @@ -60,7 +60,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Automation/Commands.Automation/packages.config b/src/ServiceManagement/Automation/Commands.Automation/packages.config index e56f5e3ecc83..ab77a48bed25 100644 --- a/src/ServiceManagement/Automation/Commands.Automation/packages.config +++ b/src/ServiceManagement/Automation/Commands.Automation/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Commands.ServiceManagement.Extensions.Test.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Commands.ServiceManagement.Extensions.Test.csproj index 2b4b9ac2e722..fc357d109c6c 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Commands.ServiceManagement.Extensions.Test.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Commands.ServiceManagement.Extensions.Test.csproj @@ -50,7 +50,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/packages.config index dcd5e7dc382a..fc02ab0cf397 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj index f3b0c0fb3657..94752c1aeba2 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj @@ -67,7 +67,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config index 236ad06f76f2..31a15d9b1a6d 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj index 75a371bd750b..beec74028c46 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj @@ -67,7 +67,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config index fa2242ce95ef..02974be63da4 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj index 32cde03efdf8..71fed0b0ed5c 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj @@ -63,7 +63,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config index 378ca3e1ae44..03cdb1c0e0c3 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj index 815fb8c9cb0b..a8cb027a86d4 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj @@ -69,7 +69,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config index fa2242ce95ef..02974be63da4 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/Commands.ExpressRoute.csproj b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/Commands.ExpressRoute.csproj index 08314ab43a7b..206043d36f53 100644 --- a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/Commands.ExpressRoute.csproj +++ b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/Commands.ExpressRoute.csproj @@ -49,7 +49,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/packages.config b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/packages.config index 7d399ff45300..4480304d2e4f 100644 --- a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/packages.config +++ b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj index 0ebc643081ac..c8c91b31aa09 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -54,7 +54,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config index ccd6fc2cf53f..b42ce3a67da7 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj index 91c6f0f895dc..7c414a6d91aa 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj @@ -61,7 +61,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config index 0de557b44372..a5b418bbc364 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/Commands.ManagedCache.Test.csproj b/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/Commands.ManagedCache.Test.csproj index 9f9fe148877e..249f01e3cc53 100644 --- a/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/Commands.ManagedCache.Test.csproj +++ b/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/Commands.ManagedCache.Test.csproj @@ -48,7 +48,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/packages.config b/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/packages.config index 8f2939b621c3..e72c1df447bb 100644 --- a/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/packages.config +++ b/src/ServiceManagement/ManagedCache/Commands.ManagedCache.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/ManagedCache/Commands.ManagedCache/Commands.ManagedCache.csproj b/src/ServiceManagement/ManagedCache/Commands.ManagedCache/Commands.ManagedCache.csproj index c9c784467a84..23070b56cad7 100644 --- a/src/ServiceManagement/ManagedCache/Commands.ManagedCache/Commands.ManagedCache.csproj +++ b/src/ServiceManagement/ManagedCache/Commands.ManagedCache/Commands.ManagedCache.csproj @@ -49,7 +49,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/ManagedCache/Commands.ManagedCache/packages.config b/src/ServiceManagement/ManagedCache/Commands.ManagedCache/packages.config index c8a8ea212c2c..f689e08c2bfc 100644 --- a/src/ServiceManagement/ManagedCache/Commands.ManagedCache/packages.config +++ b/src/ServiceManagement/ManagedCache/Commands.ManagedCache/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj b/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj index 2636db82fe0c..3c9c93090b67 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj +++ b/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj @@ -1,4 +1,4 @@ - + @@ -48,7 +48,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Network/Commands.Network.Test/packages.config b/src/ServiceManagement/Network/Commands.Network.Test/packages.config index 759216211bfb..67ee229ae0fa 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/packages.config +++ b/src/ServiceManagement/Network/Commands.Network.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj b/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj index dabb308f2db4..91f6a0c0e737 100644 --- a/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj +++ b/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj @@ -57,7 +57,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Network/Commands.Network/packages.config b/src/ServiceManagement/Network/Commands.Network/packages.config index 8317c6013a49..775bc74e1354 100644 --- a/src/ServiceManagement/Network/Commands.Network/packages.config +++ b/src/ServiceManagement/Network/Commands.Network/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj index 2e519946d72e..0504208183c0 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj @@ -39,7 +39,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config index b58c1d5e681b..b645a777bd43 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj index 34330ab6b64f..d0a2b0e9acec 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj @@ -55,7 +55,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config index f1558312ecdc..a35ec13b05aa 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj index f8fa8e393c24..c732e904bd1a 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj @@ -63,7 +63,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config index 1302d25fbb41..12ddfcca7d35 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj b/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj index da4b185869c9..6e97f645f282 100644 --- a/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj +++ b/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj @@ -52,7 +52,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config b/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config index cce3c4d5cdca..44fc47d73df7 100644 --- a/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config +++ b/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj b/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj index b4c96cd3ace1..f56917e8ae06 100644 --- a/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj +++ b/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj @@ -57,7 +57,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Services/Commands.Test/packages.config b/src/ServiceManagement/Services/Commands.Test/packages.config index 8508c6591087..29c1fabe991b 100644 --- a/src/ServiceManagement/Services/Commands.Test/packages.config +++ b/src/ServiceManagement/Services/Commands.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj b/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj index cd821b572145..4b73ad4c2748 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj +++ b/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj @@ -64,7 +64,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Services/Commands.Utilities/packages.config b/src/ServiceManagement/Services/Commands.Utilities/packages.config index 4a151bdf7d09..6bf964ea8778 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/packages.config +++ b/src/ServiceManagement/Services/Commands.Utilities/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands/Commands.csproj b/src/ServiceManagement/Services/Commands/Commands.csproj index 8cb239389cec..55f39bffc3fe 100644 --- a/src/ServiceManagement/Services/Commands/Commands.csproj +++ b/src/ServiceManagement/Services/Commands/Commands.csproj @@ -62,7 +62,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Services/Commands/packages.config b/src/ServiceManagement/Services/Commands/packages.config index 8cf23c1e0bec..289d3441b82d 100644 --- a/src/ServiceManagement/Services/Commands/packages.config +++ b/src/ServiceManagement/Services/Commands/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Commands.SqlDatabase.Test.csproj b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Commands.SqlDatabase.Test.csproj index fdb7dcfd18c2..71fec3237708 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Commands.SqlDatabase.Test.csproj +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Commands.SqlDatabase.Test.csproj @@ -58,7 +58,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/packages.config b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/packages.config index 28f57a57b37d..d3664b524b7f 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/packages.config +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase/Commands.SqlDatabase.csproj b/src/ServiceManagement/Sql/Commands.SqlDatabase/Commands.SqlDatabase.csproj index e83aa22f2371..8349a22f6913 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase/Commands.SqlDatabase.csproj +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase/Commands.SqlDatabase.csproj @@ -59,7 +59,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase/packages.config b/src/ServiceManagement/Sql/Commands.SqlDatabase/packages.config index c0803b1c1c0e..643d7d17441d 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase/packages.config +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj index 839ffef33768..7300eeedb33e 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj @@ -41,7 +41,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll @@ -133,7 +133,6 @@ - Designer diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/packages.config b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/packages.config index 3339f2da5915..e56687770ce1 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/packages.config +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple/Commands.StorSimple.csproj b/src/ServiceManagement/StorSimple/Commands.StorSimple/Commands.StorSimple.csproj index 34782b3d03bb..cdaad46e3fe4 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple/Commands.StorSimple.csproj +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple/Commands.StorSimple.csproj @@ -51,7 +51,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple/packages.config b/src/ServiceManagement/StorSimple/Commands.StorSimple/packages.config index 88711c491451..9d511036e0ea 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple/packages.config +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj b/src/ServiceManagement/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj index b384b785a956..4fb2bad586bc 100644 --- a/src/ServiceManagement/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj @@ -58,7 +58,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/Storage/Commands.Storage.Test/packages.config b/src/ServiceManagement/Storage/Commands.Storage.Test/packages.config index e33f28d1e5a6..412fca51881b 100644 --- a/src/ServiceManagement/Storage/Commands.Storage.Test/packages.config +++ b/src/ServiceManagement/Storage/Commands.Storage.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/Storage/Commands.Storage/Commands.Storage.csproj b/src/ServiceManagement/Storage/Commands.Storage/Commands.Storage.csproj index 11ff31419f6f..971d758a2a7e 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Commands.Storage.csproj +++ b/src/ServiceManagement/Storage/Commands.Storage/Commands.Storage.csproj @@ -51,7 +51,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll False diff --git a/src/ServiceManagement/Storage/Commands.Storage/packages.config b/src/ServiceManagement/Storage/Commands.Storage/packages.config index aae625f00297..f9ce78749944 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/packages.config +++ b/src/ServiceManagement/Storage/Commands.Storage/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj index 5a157ac3872f..8c2fec07f866 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj @@ -45,7 +45,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/packages.config b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/packages.config index 2e7f286db998..fde0423532f8 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/packages.config +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/packages.config @@ -2,7 +2,7 @@ - + diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj index f28af4699057..f17676ced137 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj @@ -53,7 +53,7 @@ False - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.25-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config index 3722d5ae1bfc..24ba4d8825d9 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config @@ -2,7 +2,7 @@ - + From 1f5812390b2880472dbf378e6114aa35d482f341 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Tue, 19 May 2015 13:17:18 -0700 Subject: [PATCH 35/40] Add app.config back to StorSimple.Test.csproj --- .../Commands.StorSimple.Test/Commands.StorSimple.Test.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj index 7300eeedb33e..413f1cef94ad 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple.Test/Commands.StorSimple.Test.csproj @@ -133,6 +133,7 @@ + Designer From 9cec9e391a441ae97cb4848f99a84d8572b59046 Mon Sep 17 00:00:00 2001 From: huangpf Date: Wed, 20 May 2015 01:55:29 -0700 Subject: [PATCH 36/40] update --- .../Commands.ScenarioTest/ServiceManagement/GetVMTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/Commands.ScenarioTest/ServiceManagement/GetVMTests.cs b/src/Common/Commands.ScenarioTest/ServiceManagement/GetVMTests.cs index e53a2880b3de..da6c5f36a53f 100644 --- a/src/Common/Commands.ScenarioTest/ServiceManagement/GetVMTests.cs +++ b/src/Common/Commands.ScenarioTest/ServiceManagement/GetVMTests.cs @@ -29,7 +29,7 @@ public class AzureVMTests [Fact] [Trait(Category.Service, Category.ServiceManagement)] - [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.LiveOnly)] [Trait(Category.AcceptanceType, Category.BVT)] public void TestGetAzureVM() { From 599fba51b06b03508e1c9c167d9effdb20e92dd0 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Wed, 20 May 2015 10:50:34 -0700 Subject: [PATCH 37/40] Alias should be PropertyObject --- .../Cmdlets/Implementation/NewAzureResourceCmdlet.cs | 2 +- .../Cmdlets/Implementation/SetAzureResourceCmdlet.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs index 43e1e8db2bb0..a8843c0aeb8a 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceCmdlet.cs @@ -47,7 +47,7 @@ public sealed class NewAzureResourceCmdlet : ResourceManipulationCmdletBase /// /// Gets or sets the property object. /// - [Alias("Object", "PropertyObject")] + [Alias("PropertyObject")] [Parameter(Mandatory = true, HelpMessage = "A hash table which represents resource properties.")] [ValidateNotNullOrEmpty] public PSObject Properties { get; set; } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs index 94c3c025a6b1..f405d37a2bbc 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/SetAzureResourceCmdlet.cs @@ -40,7 +40,7 @@ public sealed class SetAzureResourceCmdlet : ResourceManipulationCmdletBase /// /// Gets or sets the property object. /// - [Alias("PropertiesObject")] + [Alias("PropertyObject")] [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A hash table which represents resource properties.")] [ValidateNotNullOrEmpty] public PSObject Properties { get; set; } From aab06f5d4f131a0fbe3e52e43a18f5129387e4d7 Mon Sep 17 00:00:00 2001 From: Nilambari Date: Wed, 20 May 2015 12:38:08 -0700 Subject: [PATCH 38/40] WORK:3527498 Enabled tests & add recorded tests results for Brooklyn NRP Ignite feature --- .../ScenarioTests/LocalNetworkGatewayTests.cs | 2 +- .../VirtualNetworkGatewayConnectionTests.cs | 4 +- .../VirtualNetworkGatewayTests.cs | 2 +- .../TestLocalNetworkGatewayCRUD.json | 474 ++++---- ...stVirtualNetworkGatewayConnectionCRUD.json | 1082 ++++++++++------- ...NetworkGatewayConnectionSharedKeyCRUD.json | 1024 ++++++++++------ .../TestVirtualNetworkGatewayCRUD.json | 840 +++++++------ 7 files changed, 1951 insertions(+), 1477 deletions(-) diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/LocalNetworkGatewayTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/LocalNetworkGatewayTests.cs index 4a857326415e..65fbb4f1d1b6 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/LocalNetworkGatewayTests.cs +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/LocalNetworkGatewayTests.cs @@ -19,7 +19,7 @@ namespace Commands.Network.Test.ScenarioTests { public class LocalNetworkGatewayTests { - [Fact(Skip = "TODO: Fix test.")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestLocalNetworkGatewayCRUD() { diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayConnectionTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayConnectionTests.cs index 0d8b606565b7..33597ae29a02 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayConnectionTests.cs +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayConnectionTests.cs @@ -19,14 +19,14 @@ namespace Commands.Network.Test.ScenarioTests { public class VirtualNetworkGatewayConnectionTests { - [Fact(Skip = "TODO: Fix test.")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestVirtualNetworkGatewayConnectionCRUD() { NetworkResourcesController.NewInstance.RunPsTest("Test-VirtualNetworkGatewayConnectionCRUD"); } - [Fact(Skip = "TODO: Fix test.")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestVirtualNetworkGatewayConnectionSharedKeyCRUD() { diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.cs index 8f1b7117122b..5bd3bb4a86ab 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.cs +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkGatewayTests.cs @@ -19,7 +19,7 @@ namespace Commands.Network.Test.ScenarioTests { public class VirtualNetworkGatewayTests { - [Fact(Skip = "TODO: Fix test.")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestVirtualNetworkGatewayCRUD() { diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.LocalNetworkGatewayTests/TestLocalNetworkGatewayCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.LocalNetworkGatewayTests/TestLocalNetworkGatewayCRUD.json index 6ff73679d15f..a04098a1573b 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.LocalNetworkGatewayTests/TestLocalNetworkGatewayCRUD.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.LocalNetworkGatewayTests/TestLocalNetworkGatewayCRUD.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "52800" + "52683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "31962" ], "x-ms-request-id": [ - "7deec76d-4cd6-440f-a6a8-d29cdff94fe7" + "43039792-870b-46b6-bdd4-9ab595822d93" ], "x-ms-correlation-request-id": [ - "7deec76d-4cd6-440f-a6a8-d29cdff94fe7" + "43039792-870b-46b6-bdd4-9ab595822d93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030626Z:7deec76d-4cd6-440f-a6a8-d29cdff94fe7" + "CENTRALUS:20150430T024100Z:43039792-870b-46b6-bdd4-9ab595822d93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:26 GMT" + "Thu, 30 Apr 2015 02:41:00 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "52800" + "52683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,13 +76,13 @@ "31961" ], "x-ms-request-id": [ - "60d10c50-8e9a-4a81-86ad-f3fb7814d3fd" + "385454fa-4a5e-4528-98fc-b00fcdf02a56" ], "x-ms-correlation-request-id": [ - "60d10c50-8e9a-4a81-86ad-f3fb7814d3fd" + "385454fa-4a5e-4528-98fc-b00fcdf02a56" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030627Z:60d10c50-8e9a-4a81-86ad-f3fb7814d3fd" + "CENTRALUS:20150430T024101Z:385454fa-4a5e-4528-98fc-b00fcdf02a56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +91,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:26 GMT" + "Thu, 30 Apr 2015 02:41:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4930?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk7711?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazc3MTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -127,13 +127,13 @@ "31960" ], "x-ms-request-id": [ - "99891a47-42cc-4d7d-9717-089c331f9425" + "2d2fdd33-b692-4ab3-a7a4-275a15f7c018" ], "x-ms-correlation-request-id": [ - "99891a47-42cc-4d7d-9717-089c331f9425" + "2d2fdd33-b692-4ab3-a7a4-275a15f7c018" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030632Z:99891a47-42cc-4d7d-9717-089c331f9425" + "CENTRALUS:20150430T024101Z:2d2fdd33-b692-4ab3-a7a4-275a15f7c018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -142,14 +142,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:32 GMT" + "Thu, 30 Apr 2015 02:41:01 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4930?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk7711?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazc3MTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -172,13 +172,13 @@ "31958" ], "x-ms-request-id": [ - "a3bf6cba-27cf-42be-be23-8977a359fcc2" + "6dd55f2e-72d8-4e50-87dc-ce2ceb6c61d8" ], "x-ms-correlation-request-id": [ - "a3bf6cba-27cf-42be-be23-8977a359fcc2" + "6dd55f2e-72d8-4e50-87dc-ce2ceb6c61d8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030640Z:a3bf6cba-27cf-42be-be23-8977a359fcc2" + "CENTRALUS:20150430T024109Z:6dd55f2e-72d8-4e50-87dc-ce2ceb6c61d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -187,14 +187,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:40 GMT" + "Thu, 30 Apr 2015 02:41:09 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4930?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk7711?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazc3MTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { @@ -208,7 +208,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930\",\r\n \"name\": \"onesdk4930\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711\",\r\n \"name\": \"onesdk7711\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "202" @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-request-id": [ - "bd0a509f-a651-472a-9c25-5f8757bd93b0" + "3e4d44d4-f16c-4eae-8065-c77261c4e943" ], "x-ms-correlation-request-id": [ - "bd0a509f-a651-472a-9c25-5f8757bd93b0" + "3e4d44d4-f16c-4eae-8065-c77261c4e943" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030633Z:bd0a509f-a651-472a-9c25-5f8757bd93b0" + "CENTRALUS:20150430T024101Z:3e4d44d4-f16c-4eae-8065-c77261c4e943" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +241,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:32 GMT" + "Thu, 30 Apr 2015 02:41:01 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,13 +274,13 @@ "31959" ], "x-ms-request-id": [ - "edb796e2-cd68-4af9-a458-bd64dba12695" + "d28a87be-d9c2-494a-89b2-53ea31ae2058" ], "x-ms-correlation-request-id": [ - "edb796e2-cd68-4af9-a458-bd64dba12695" + "d28a87be-d9c2-494a-89b2-53ea31ae2058" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030633Z:edb796e2-cd68-4af9-a458-bd64dba12695" + "CENTRALUS:20150430T024102Z:d28a87be-d9c2-494a-89b2-53ea31ae2058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,14 +289,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:32 GMT" + "Thu, 30 Apr 2015 02:41:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4930/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk7711/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -322,16 +322,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:93386846-3740-4ee8-962f-ed8d5281e4d5" + "centralus:db05e741-9c04-487b-ad3f-53501b5a0316" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "31944" ], "x-ms-correlation-request-id": [ - "17623ba4-239b-46d6-90ef-8c9c2b488ced" + "23c11fb6-5cda-4f80-b8ce-466bdf71f00c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030656Z:17623ba4-239b-46d6-90ef-8c9c2b488ced" + "CENTRALUS:20150430T024057Z:23c11fb6-5cda-4f80-b8ce-466bdf71f00c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,14 +340,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:56 GMT" + "Thu, 30 Apr 2015 02:40:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/virtualNetworkGateways/onesdk1351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMTM1MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk1NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -373,13 +373,13 @@ "gateway" ], "x-ms-request-id": [ - "2b9f8f07-8005-43d2-ab49-20d5d6118ea0" + "cce1b5cc-148c-409a-8eb5-71bf9faf8f5a" ], "x-ms-correlation-request-id": [ - "2b9f8f07-8005-43d2-ab49-20d5d6118ea0" + "cce1b5cc-148c-409a-8eb5-71bf9faf8f5a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030631Z:2b9f8f07-8005-43d2-ab49-20d5d6118ea0" + "CENTRALUS:20150430T024101Z:cce1b5cc-148c-409a-8eb5-71bf9faf8f5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -388,31 +388,25 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:31 GMT" + "Thu, 30 Apr 2015 02:41:00 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways/onesdk1351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"name\": \"onesdk1351\",\r\n \"type\": \"microsoft.network/localNetworkGateways\",\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk1NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "281" - ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1351\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/Microsoft.Network/localNetworkGateways/onesdk1351\",\r\n \"etag\": \"W/\\\"35cda890-635b-42e2-8d23-f9307a00547f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"f2999a36-e5f8-49c1-8bfd-5578b291e879\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9561\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561\",\r\n \"etag\": \"W/\\\"565f4ece-c9cf-4e36-b931-326308df2823\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"647f48b4-bc74-4f68-9700-3078939763bf\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "529" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -423,14 +417,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "d21a7e6d-2d93-4431-b5a3-57f7bcf8afc8" - ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/d21a7e6d-2d93-4431-b5a3-57f7bcf8afc8?api-version=2015-05-01-preview" + "daf3d474-9562-4feb-909f-5046edd3e34e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,41 +430,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31954" ], "x-ms-correlation-request-id": [ - "22592001-58fa-416b-9673-3956fb3a569c" + "284a085e-45cd-45fe-8fa6-907c4ede18bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030631Z:22592001-58fa-416b-9673-3956fb3a569c" + "CENTRALUS:20150430T024102Z:284a085e-45cd-45fe-8fa6-907c4ede18bf" ], "Date": [ - "Sun, 26 Apr 2015 03:06:31 GMT" + "Thu, 30 Apr 2015 02:41:02 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways/onesdk1351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"gatewayIpAddress\": \"192.168.3.5\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6be374b5-f1d6-4f34-ba72-1a332fb39887\\\"\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/Microsoft.Network/localNetworkGateways/onesdk1351\",\r\n \"name\": \"onesdk1351\",\r\n \"type\": \"microsoft.network/localNetworkGateways\",\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk1NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "527" - ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1351\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/Microsoft.Network/localNetworkGateways/onesdk1351\",\r\n \"etag\": \"W/\\\"d3b54b59-f893-40dd-88a7-3f59f20fd34c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.5\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9561\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561\",\r\n \"etag\": \"W/\\\"565f4ece-c9cf-4e36-b931-326308df2823\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"647f48b4-bc74-4f68-9700-3078939763bf\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "529" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -487,14 +469,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "5bb49818-9764-4b0f-ab68-8071d3e37a93" - ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/5bb49818-9764-4b0f-ab68-8071d3e37a93?api-version=2015-05-01-preview" + "753d0144-d877-4c97-9bba-b614864fe29f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -506,38 +482,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31953" ], "x-ms-correlation-request-id": [ - "dc848ef2-65a6-4a06-9e52-cafd1b28ae6e" + "9c59a5e6-4be3-48a2-9636-eae84352ad15" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030633Z:dc848ef2-65a6-4a06-9e52-cafd1b28ae6e" + "CENTRALUS:20150430T024103Z:9c59a5e6-4be3-48a2-9636-eae84352ad15" ], "Date": [ - "Sun, 26 Apr 2015 03:06:32 GMT" + "Thu, 30 Apr 2015 02:41:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/d21a7e6d-2d93-4431-b5a3-57f7bcf8afc8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2QyMWE3ZTZkLTJkOTMtNDQzMS1iNWEzLTU3ZjdiY2Y4YWZjOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk1NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9561\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561\",\r\n \"etag\": \"W/\\\"565f4ece-c9cf-4e36-b931-326308df2823\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"647f48b4-bc74-4f68-9700-3078939763bf\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -549,7 +522,7 @@ "no-cache" ], "x-ms-request-id": [ - "f96ae463-a115-4164-87ea-9a5f2322d6c0" + "c7e2c161-1999-4202-a0dc-7b92ed9f47d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,23 +535,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31907" + "31951" ], "x-ms-correlation-request-id": [ - "b13a8a07-5dbb-46c7-bd1b-72da2099a789" + "0fc67e80-cc2b-4bb6-8ac7-e947404eb2bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030632Z:b13a8a07-5dbb-46c7-bd1b-72da2099a789" + "CENTRALUS:20150430T024103Z:0fc67e80-cc2b-4bb6-8ac7-e947404eb2bf" ], "Date": [ - "Sun, 26 Apr 2015 03:06:31 GMT" + "Thu, 30 Apr 2015 02:41:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways/onesdk1351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk1NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -586,7 +559,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1351\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/Microsoft.Network/localNetworkGateways/onesdk1351\",\r\n \"etag\": \"W/\\\"6be374b5-f1d6-4f34-ba72-1a332fb39887\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"f2999a36-e5f8-49c1-8bfd-5578b291e879\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9561\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561\",\r\n \"etag\": \"W/\\\"6b4550e4-1c03-49a5-8ae5-29e91db6bfac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.5\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "530" @@ -601,7 +574,7 @@ "no-cache" ], "x-ms-request-id": [ - "08e3e1af-1b10-4afd-bd51-875e4ce2e1cb" + "ba7fdda6-6688-4d8b-bbd9-fcc2856b5b8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -614,23 +587,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31906" + "31949" ], "x-ms-correlation-request-id": [ - "b1a8157f-cf4c-4c0b-ad06-fd83308b9bf2" + "d729cb6e-24c4-456a-8db8-919289bdfbc7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030632Z:b1a8157f-cf4c-4c0b-ad06-fd83308b9bf2" + "CENTRALUS:20150430T024104Z:d729cb6e-24c4-456a-8db8-919289bdfbc7" ], "Date": [ - "Sun, 26 Apr 2015 03:06:32 GMT" + "Thu, 30 Apr 2015 02:41:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways/onesdk1351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk1NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +611,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1351\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/Microsoft.Network/localNetworkGateways/onesdk1351\",\r\n \"etag\": \"W/\\\"6be374b5-f1d6-4f34-ba72-1a332fb39887\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"f2999a36-e5f8-49c1-8bfd-5578b291e879\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9561\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561\",\r\n \"etag\": \"W/\\\"6b4550e4-1c03-49a5-8ae5-29e91db6bfac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.5\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "530" @@ -653,7 +626,7 @@ "no-cache" ], "x-ms-request-id": [ - "ac36bc16-e2f1-43c7-bdfc-ca3cd25d4a6f" + "369f1d6f-4fc1-4fa0-b226-c3e752c23bb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,34 +639,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31905" + "31948" ], "x-ms-correlation-request-id": [ - "28508933-391c-4dcc-9abe-140ab93f0b75" + "65b35197-51a8-42a0-92b1-3f8242dd0961" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030632Z:28508933-391c-4dcc-9abe-140ab93f0b75" + "CENTRALUS:20150430T024104Z:65b35197-51a8-42a0-92b1-3f8242dd0961" ], "Date": [ - "Sun, 26 Apr 2015 03:06:32 GMT" + "Thu, 30 Apr 2015 02:41:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways/onesdk1351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk1NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"name\": \"onesdk9561\",\r\n \"type\": \"microsoft.network/localNetworkGateways\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "281" + ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1351\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/Microsoft.Network/localNetworkGateways/onesdk1351\",\r\n \"etag\": \"W/\\\"6be374b5-f1d6-4f34-ba72-1a332fb39887\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"f2999a36-e5f8-49c1-8bfd-5578b291e879\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9561\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561\",\r\n \"etag\": \"W/\\\"9c9a749e-c966-4aa0-bb74-0f3ab29602c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"647f48b4-bc74-4f68-9700-3078939763bf\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "530" + "529" ], "Content-Type": [ "application/json; charset=utf-8" @@ -704,8 +683,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "fe5ccf80-9910-498e-8f95-3f7981f088d2" + "b2257b00-3f62-4b56-8258-b30fb657f92b" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/b2257b00-3f62-4b56-8258-b30fb657f92b?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,35 +702,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31903" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-correlation-request-id": [ - "d69b6183-ce79-4747-bff2-da7ba9c301b7" + "6b556be3-8edc-488f-b0df-9dc049bdf173" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030632Z:d69b6183-ce79-4747-bff2-da7ba9c301b7" + "CENTRALUS:20150430T024102Z:6b556be3-8edc-488f-b0df-9dc049bdf173" ], "Date": [ - "Sun, 26 Apr 2015 03:06:32 GMT" + "Thu, 30 Apr 2015 02:41:01 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways/onesdk1351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk1NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"gatewayIpAddress\": \"192.168.3.5\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"565f4ece-c9cf-4e36-b931-326308df2823\\\"\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561\",\r\n \"name\": \"onesdk9561\",\r\n \"type\": \"microsoft.network/localNetworkGateways\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "527" + ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1351\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/Microsoft.Network/localNetworkGateways/onesdk1351\",\r\n \"etag\": \"W/\\\"6cc3d78c-3c12-4866-8ef9-c21cbf796e9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.5\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9561\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561\",\r\n \"etag\": \"W/\\\"757dc33d-0542-4f19-9721-b1993592c076\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.5\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "530" + "529" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,8 +747,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b7b0dcc5-0f0e-40a6-a82f-480222e7e070" + "22bca258-317c-4fd6-bc2c-201008b0e99c" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/22bca258-317c-4fd6-bc2c-201008b0e99c?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -769,35 +766,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31901" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" ], "x-ms-correlation-request-id": [ - "48d7567b-da91-4146-9301-6be4567e43f4" + "ac4c2e59-ccc5-4bc4-b72e-74484ca4fc1a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030633Z:48d7567b-da91-4146-9301-6be4567e43f4" + "CENTRALUS:20150430T024103Z:ac4c2e59-ccc5-4bc4-b72e-74484ca4fc1a" ], "Date": [ - "Sun, 26 Apr 2015 03:06:33 GMT" + "Thu, 30 Apr 2015 02:41:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways/onesdk1351?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzNTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/b2257b00-3f62-4b56-8258-b30fb657f92b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2IyMjU3YjAwLTNmNjItNGI1Ni04MjU4LWIzMGZiNjU3ZjkyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1351\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/Microsoft.Network/localNetworkGateways/onesdk1351\",\r\n \"etag\": \"W/\\\"6cc3d78c-3c12-4866-8ef9-c21cbf796e9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.5\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "530" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -809,7 +809,7 @@ "no-cache" ], "x-ms-request-id": [ - "385451d1-39ed-4f1c-9334-fb1225fdacd1" + "4fda57f0-8dd6-4097-a90a-af6b14d2931f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,23 +822,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31900" + "31955" ], "x-ms-correlation-request-id": [ - "39e96415-6950-4bd9-a228-0845fb3346d9" + "33c38570-3af6-4e75-a33d-86cd3d0a2a19" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030633Z:39e96415-6950-4bd9-a228-0845fb3346d9" + "CENTRALUS:20150430T024102Z:33c38570-3af6-4e75-a33d-86cd3d0a2a19" ], "Date": [ - "Sun, 26 Apr 2015 03:06:33 GMT" + "Thu, 30 Apr 2015 02:41:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -846,7 +846,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk1351\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/Microsoft.Network/localNetworkGateways/onesdk1351\",\r\n \"etag\": \"W/\\\"6be374b5-f1d6-4f34-ba72-1a332fb39887\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"f2999a36-e5f8-49c1-8bfd-5578b291e879\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk9561\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561\",\r\n \"etag\": \"W/\\\"565f4ece-c9cf-4e36-b931-326308df2823\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"647f48b4-bc74-4f68-9700-3078939763bf\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "638" @@ -861,7 +861,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef6ecf1e-62d0-4bcb-b8d6-9f7f9ba07441" + "8a38dc4f-abee-4875-9e64-7c7ad4a49585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -874,23 +874,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31904" + "31952" ], "x-ms-correlation-request-id": [ - "34f9bffd-6676-4a39-800d-884b4036fdad" + "3f41106b-5fb9-431f-8539-2d8bff6a7b9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030632Z:34f9bffd-6676-4a39-800d-884b4036fdad" + "CENTRALUS:20150430T024103Z:3f41106b-5fb9-431f-8539-2d8bff6a7b9c" ], "Date": [ - "Sun, 26 Apr 2015 03:06:32 GMT" + "Thu, 30 Apr 2015 02:41:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,7 +913,7 @@ "no-cache" ], "x-ms-request-id": [ - "8b4e6626-7e03-4a73-b0be-eda2459318e0" + "cda93cd8-52fb-4217-bc55-fbbe3ecfbc94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,23 +926,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31898" + "31946" ], "x-ms-correlation-request-id": [ - "cf89d685-1fda-47b0-8907-cbc6ffed7669" + "c63d47c1-dfc0-4207-ae8f-77186443cfbb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030634Z:cf89d685-1fda-47b0-8907-cbc6ffed7669" + "CENTRALUS:20150430T024105Z:c63d47c1-dfc0-4207-ae8f-77186443cfbb" ], "Date": [ - "Sun, 26 Apr 2015 03:06:33 GMT" + "Thu, 30 Apr 2015 02:41:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/5bb49818-9764-4b0f-ab68-8071d3e37a93?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzViYjQ5ODE4LTk3NjQtNGIwZi1hYjY4LTgwNzFkM2UzN2E5Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/22bca258-317c-4fd6-bc2c-201008b0e99c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzIyYmNhMjU4LTMxN2MtNGZkNi1iYzJjLTIwMTAwOGIwZTk5Yz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -968,7 +968,7 @@ "no-cache" ], "x-ms-request-id": [ - "ac424a58-2420-447b-a750-b97ce1761997" + "25e74938-a284-4a5c-8900-0f5e62cd2a1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,23 +981,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31902" + "31950" ], "x-ms-correlation-request-id": [ - "525f616e-41c6-49e2-a906-f5c608304fa7" + "12f99628-18ce-438d-95cc-f816472ac8c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030633Z:525f616e-41c6-49e2-a906-f5c608304fa7" + "CENTRALUS:20150430T024104Z:12f99628-18ce-438d-95cc-f816472ac8c3" ], "Date": [ - "Sun, 26 Apr 2015 03:06:32 GMT" + "Thu, 30 Apr 2015 02:41:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4930/providers/microsoft.network/localNetworkGateways/onesdk1351/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MzAvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazEzNTEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk7711/providers/Microsoft.Network/localNetworkGateways/onesdk9561/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazc3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk1NjEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1020,10 +1020,10 @@ "10" ], "x-ms-request-id": [ - "8e880383-52ff-4a90-a399-db03171486bf" + "14ab031b-c563-482d-9277-6e3e6052228a" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/8e880383-52ff-4a90-a399-db03171486bf?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/14ab031b-c563-482d-9277-6e3e6052228a?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,30 +1032,30 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operationResults/8e880383-52ff-4a90-a399-db03171486bf?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operationResults/14ab031b-c563-482d-9277-6e3e6052228a?api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1186" ], "x-ms-correlation-request-id": [ - "14aadd40-f6b8-445f-8556-7b52921fc26a" + "e4162795-7549-4d4a-8a4f-a6bdae3018a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030633Z:14aadd40-f6b8-445f-8556-7b52921fc26a" + "CENTRALUS:20150430T024104Z:e4162795-7549-4d4a-8a4f-a6bdae3018a8" ], "Date": [ - "Sun, 26 Apr 2015 03:06:33 GMT" + "Thu, 30 Apr 2015 02:41:04 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/8e880383-52ff-4a90-a399-db03171486bf?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzhlODgwMzgzLTUyZmYtNGE5MC1hMzk5LWRiMDMxNzE0ODZiZj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/14ab031b-c563-482d-9277-6e3e6052228a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzE0YWIwMzFiLWM1NjMtNDgyZC05Mjc3LTZlM2U2MDUyMjI4YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1081,7 +1081,7 @@ "no-cache" ], "x-ms-request-id": [ - "2d4b4ec4-2e0d-41de-b1ee-302324901cda" + "23eedaef-7d85-405b-899b-bc2be7a6ef64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1094,23 +1094,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31899" + "31947" ], "x-ms-correlation-request-id": [ - "744119e2-74a8-47ae-9839-7ea9bda96038" + "ed79a193-2e87-4de3-9e05-e0abb420c0b5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030634Z:744119e2-74a8-47ae-9839-7ea9bda96038" + "CENTRALUS:20150430T024105Z:ed79a193-2e87-4de3-9e05-e0abb420c0b5" ], "Date": [ - "Sun, 26 Apr 2015 03:06:33 GMT" + "Thu, 30 Apr 2015 02:41:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4930?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk7711?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazc3MTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1133,16 +1133,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-request-id": [ - "bf28fe9a-af7a-4760-bfcc-b699f48f0e57" + "b8927891-424b-4793-bf1e-7f626a816425" ], "x-ms-correlation-request-id": [ - "bf28fe9a-af7a-4760-bfcc-b699f48f0e57" + "b8927891-424b-4793-bf1e-7f626a816425" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030640Z:bf28fe9a-af7a-4760-bfcc-b699f48f0e57" + "CENTRALUS:20150430T024110Z:b8927891-424b-4793-bf1e-7f626a816425" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1151,17 +1151,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:40 GMT" + "Thu, 30 Apr 2015 02:41:09 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NzExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVE13TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NzExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOekV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1190,13 +1190,13 @@ "31957" ], "x-ms-request-id": [ - "4c421f8b-0921-4503-ae33-4e105e919c6a" + "3bb7c1a3-c2bf-4368-b905-07cb458f5cb4" ], "x-ms-correlation-request-id": [ - "4c421f8b-0921-4503-ae33-4e105e919c6a" + "3bb7c1a3-c2bf-4368-b905-07cb458f5cb4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030640Z:4c421f8b-0921-4503-ae33-4e105e919c6a" + "CENTRALUS:20150430T024110Z:3bb7c1a3-c2bf-4368-b905-07cb458f5cb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1205,17 +1205,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:40 GMT" + "Thu, 30 Apr 2015 02:41:09 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NzExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVE13TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NzExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOekV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1244,13 +1244,13 @@ "31956" ], "x-ms-request-id": [ - "f5c18706-a693-4c78-9fa6-eb6d765287a1" + "fd7b5aad-8df1-4649-9626-5b1dbf44136d" ], "x-ms-correlation-request-id": [ - "f5c18706-a693-4c78-9fa6-eb6d765287a1" + "fd7b5aad-8df1-4649-9626-5b1dbf44136d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030656Z:f5c18706-a693-4c78-9fa6-eb6d765287a1" + "CENTRALUS:20150430T024130Z:fd7b5aad-8df1-4649-9626-5b1dbf44136d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1259,17 +1259,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:06:55 GMT" + "Thu, 30 Apr 2015 02:41:29 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NzExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVE13TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NzExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOekV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1298,13 +1298,13 @@ "31955" ], "x-ms-request-id": [ - "f8300e77-0f45-426f-a66a-f50ec684f725" + "74232ffe-e7f7-40f4-8ce8-8a3042b301b9" ], "x-ms-correlation-request-id": [ - "f8300e77-0f45-426f-a66a-f50ec684f725" + "74232ffe-e7f7-40f4-8ce8-8a3042b301b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030711Z:f8300e77-0f45-426f-a66a-f50ec684f725" + "CENTRALUS:20150430T024145Z:74232ffe-e7f7-40f4-8ce8-8a3042b301b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1313,17 +1313,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:07:10 GMT" + "Thu, 30 Apr 2015 02:41:45 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NzExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTMwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVE13TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NzExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOekV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1349,13 +1349,13 @@ "31954" ], "x-ms-request-id": [ - "f23adf0b-08a1-4af7-83dc-098f071a3b2c" + "a29ae09a-9ed2-48e2-b3fd-a4962b786002" ], "x-ms-correlation-request-id": [ - "f23adf0b-08a1-4af7-83dc-098f071a3b2c" + "a29ae09a-9ed2-48e2-b3fd-a4962b786002" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030726Z:f23adf0b-08a1-4af7-83dc-098f071a3b2c" + "CENTRALUS:20150430T024202Z:a29ae09a-9ed2-48e2-b3fd-a4962b786002" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1364,7 +1364,7 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:07:26 GMT" + "Thu, 30 Apr 2015 02:42:02 GMT" ] }, "StatusCode": 200 @@ -1372,8 +1372,8 @@ ], "Names": { "Test-LocalNetworkGatewayCRUD": [ - "onesdk4930", - "onesdk1351" + "onesdk7711", + "onesdk9561" ] }, "Variables": { diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionCRUD.json index 210a642bf79d..59109709f999 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionCRUD.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionCRUD.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "52800" + "52683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "31952" ], "x-ms-request-id": [ - "612ebb07-6651-4136-8124-0944f8015952" + "6910a010-daf4-4da2-bd2b-532b107ce31b" ], "x-ms-correlation-request-id": [ - "612ebb07-6651-4136-8124-0944f8015952" + "6910a010-daf4-4da2-bd2b-532b107ce31b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030244Z:612ebb07-6651-4136-8124-0944f8015952" + "CENTRALUS:20150430T025029Z:6910a010-daf4-4da2-bd2b-532b107ce31b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:02:44 GMT" + "Thu, 30 Apr 2015 02:50:28 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "52800" + "52683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "31951" ], "x-ms-request-id": [ - "68111156-0e55-4588-b453-e724c322b77a" + "98cc7a2c-a90d-456a-a46a-af013552fba5" ], "x-ms-correlation-request-id": [ - "68111156-0e55-4588-b453-e724c322b77a" + "98cc7a2c-a90d-456a-a46a-af013552fba5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030245Z:68111156-0e55-4588-b453-e724c322b77a" + "CENTRALUS:20150430T025029Z:98cc7a2c-a90d-456a-a46a-af013552fba5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +91,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:02:44 GMT" + "Thu, 30 Apr 2015 02:50:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk2946?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk1701?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -124,16 +124,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "31950" ], "x-ms-request-id": [ - "f3f3c10d-c28e-420f-8fb7-a369d595df06" + "8b514295-8db2-4766-b61b-fb5779c61d82" ], "x-ms-correlation-request-id": [ - "f3f3c10d-c28e-420f-8fb7-a369d595df06" + "8b514295-8db2-4766-b61b-fb5779c61d82" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030245Z:f3f3c10d-c28e-420f-8fb7-a369d595df06" + "CENTRALUS:20150430T025029Z:8b514295-8db2-4766-b61b-fb5779c61d82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -142,14 +142,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:02:44 GMT" + "Thu, 30 Apr 2015 02:50:29 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk2946?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk1701?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -169,16 +169,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31916" + "31948" ], "x-ms-request-id": [ - "2bcfc302-0287-45d0-a56d-cd1581da3424" + "85c8b895-bf38-407b-95db-01d944048caa" ], "x-ms-correlation-request-id": [ - "2bcfc302-0287-45d0-a56d-cd1581da3424" + "85c8b895-bf38-407b-95db-01d944048caa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030408Z:2bcfc302-0287-45d0-a56d-cd1581da3424" + "CENTRALUS:20150430T025121Z:85c8b895-bf38-407b-95db-01d944048caa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -187,14 +187,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:04:08 GMT" + "Thu, 30 Apr 2015 02:51:21 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk2946?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk1701?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { @@ -208,7 +208,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946\",\r\n \"name\": \"onesdk2946\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701\",\r\n \"name\": \"onesdk1701\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "202" @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-request-id": [ - "cb9fbd9a-d07b-4113-a1f6-8a03bd0d48e0" + "e7279de2-3347-4cb4-99b2-cb4cb5843f4d" ], "x-ms-correlation-request-id": [ - "cb9fbd9a-d07b-4113-a1f6-8a03bd0d48e0" + "e7279de2-3347-4cb4-99b2-cb4cb5843f4d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030245Z:cb9fbd9a-d07b-4113-a1f6-8a03bd0d48e0" + "CENTRALUS:20150430T025029Z:e7279de2-3347-4cb4-99b2-cb4cb5843f4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +241,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:02:44 GMT" + "Thu, 30 Apr 2015 02:50:29 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -271,16 +271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "31949" ], "x-ms-request-id": [ - "26eddefe-f584-4e6f-9100-0f1af8e85f2b" + "7ac0bb35-b482-4eb6-a8ac-7f6d439cc9d6" ], "x-ms-correlation-request-id": [ - "26eddefe-f584-4e6f-9100-0f1af8e85f2b" + "7ac0bb35-b482-4eb6-a8ac-7f6d439cc9d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030245Z:26eddefe-f584-4e6f-9100-0f1af8e85f2b" + "CENTRALUS:20150430T025030Z:7ac0bb35-b482-4eb6-a8ac-7f6d439cc9d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,14 +289,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:02:44 GMT" + "Thu, 30 Apr 2015 02:50:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk2946/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk1701/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -322,16 +322,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:9fdb2238-8ac3-40c7-b2c8-c0ae52a414c9" + "centralus:3589855f-ba65-48b8-88e9-1cbf700d5c23" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "31917" ], "x-ms-correlation-request-id": [ - "63b886a8-9db6-476d-9327-c7f70fedda4f" + "7fc6141a-115e-4f57-80fb-954908078b2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030226Z:63b886a8-9db6-476d-9327-c7f70fedda4f" + "CENTRALUS:20150430T025029Z:7fc6141a-115e-4f57-80fb-954908078b2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,14 +340,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:02:26 GMT" + "Thu, 30 Apr 2015 02:50:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualnetworks/onesdk7370?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs3MzcwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualnetworks/onesdk6980?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs2OTgwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -373,13 +373,13 @@ "gateway" ], "x-ms-request-id": [ - "7b064557-a53e-4959-9948-c32d5ddfd1ee" + "6c4e8c80-da25-45b2-aa94-e223d671a0f3" ], "x-ms-correlation-request-id": [ - "7b064557-a53e-4959-9948-c32d5ddfd1ee" + "6c4e8c80-da25-45b2-aa94-e223d671a0f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030226Z:7b064557-a53e-4959-9948-c32d5ddfd1ee" + "CENTRALUS:20150430T025033Z:6c4e8c80-da25-45b2-aa94-e223d671a0f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -388,14 +388,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:02:26 GMT" + "Thu, 30 Apr 2015 02:50:32 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualnetworks/onesdk7370?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs3MzcwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualnetworks/onesdk6980?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs2OTgwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -403,7 +403,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370\",\r\n \"etag\": \"W/\\\"45fba0b5-cce4-43f6-9122-42b2fcd2e940\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"45fba0b5-cce4-43f6-9122-42b2fcd2e940\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6980\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980\",\r\n \"etag\": \"W/\\\"706ce226-7e38-42a7-a8f6-9d73bba9167b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"706ce226-7e38-42a7-a8f6-9d73bba9167b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "847" @@ -418,7 +418,7 @@ "no-cache" ], "x-ms-request-id": [ - "f72c91fd-a037-444b-a06b-e0f784132ea8" + "f610aa16-11d5-42ee-b687-2aa6669a65c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,30 +427,30 @@ "no-cache" ], "ETag": [ - "W/\"45fba0b5-cce4-43f6-9122-42b2fcd2e940\"" + "W/\"706ce226-7e38-42a7-a8f6-9d73bba9167b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" + "31945" ], "x-ms-correlation-request-id": [ - "3e291967-1de4-423d-b9e1-3a5b7fc1cd85" + "e612b0b2-f242-4183-b224-c8cb0d5374a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030243Z:3e291967-1de4-423d-b9e1-3a5b7fc1cd85" + "CENTRALUS:20150430T025044Z:e612b0b2-f242-4183-b224-c8cb0d5374a9" ], "Date": [ - "Sun, 26 Apr 2015 03:02:42 GMT" + "Thu, 30 Apr 2015 02:50:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualnetworks/onesdk7370?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs3MzcwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualnetworks/onesdk6980?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs2OTgwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -458,7 +458,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370\",\r\n \"etag\": \"W/\\\"45fba0b5-cce4-43f6-9122-42b2fcd2e940\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"45fba0b5-cce4-43f6-9122-42b2fcd2e940\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6980\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980\",\r\n \"etag\": \"W/\\\"706ce226-7e38-42a7-a8f6-9d73bba9167b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"706ce226-7e38-42a7-a8f6-9d73bba9167b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "847" @@ -473,7 +473,7 @@ "no-cache" ], "x-ms-request-id": [ - "5afc41fc-b881-4dbc-945e-d05e5e376aa4" + "2a6983d0-9cd6-4044-840f-f5c823ca06cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -482,32 +482,32 @@ "no-cache" ], "ETag": [ - "W/\"45fba0b5-cce4-43f6-9122-42b2fcd2e940\"" + "W/\"706ce226-7e38-42a7-a8f6-9d73bba9167b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" + "31944" ], "x-ms-correlation-request-id": [ - "d329bb21-c886-49e8-80a7-b28d33845251" + "8c1d68ae-d0f9-4aa8-bca0-9389fc3c2353" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030243Z:d329bb21-c886-49e8-80a7-b28d33845251" + "CENTRALUS:20150430T025052Z:8c1d68ae-d0f9-4aa8-bca0-9389fc3c2353" ], "Date": [ - "Sun, 26 Apr 2015 03:02:42 GMT" + "Thu, 30 Apr 2015 02:50:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualnetworks/onesdk7370?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs3MzcwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualnetworks/onesdk6980?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs2OTgwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk7370\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk6980\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -519,7 +519,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370\",\r\n \"etag\": \"W/\\\"f20b36d9-f7ba-46c6-b3a2-5ff0920245ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"f20b36d9-f7ba-46c6-b3a2-5ff0920245ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6980\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980\",\r\n \"etag\": \"W/\\\"1f4d6de8-f074-45b5-b87d-7ed30679a164\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"1f4d6de8-f074-45b5-b87d-7ed30679a164\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "845" @@ -537,10 +537,10 @@ "10" ], "x-ms-request-id": [ - "279b0d12-ee81-4477-8001-d23b7f44a23b" + "c3788baf-0f38-4c26-9e0c-a709cb3064a7" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/279b0d12-ee81-4477-8001-d23b7f44a23b?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c3788baf-0f38-4c26-9e0c-a709cb3064a7?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,23 +553,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1187" ], "x-ms-correlation-request-id": [ - "17a79614-3049-4c88-bc8d-71879e2a9558" + "5aa15a7c-7103-4003-8538-cfbe87a57b65" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030227Z:17a79614-3049-4c88-bc8d-71879e2a9558" + "CENTRALUS:20150430T025033Z:5aa15a7c-7103-4003-8538-cfbe87a57b65" ], "Date": [ - "Sun, 26 Apr 2015 03:02:26 GMT" + "Thu, 30 Apr 2015 02:50:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/279b0d12-ee81-4477-8001-d23b7f44a23b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzI3OWIwZDEyLWVlODEtNDQ3Ny04MDAxLWQyM2I3ZjQ0YTIzYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c3788baf-0f38-4c26-9e0c-a709cb3064a7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2MzNzg4YmFmLTBmMzgtNGMyNi05ZTBjLWE3MDljYjMwNjRhNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,7 +595,7 @@ "no-cache" ], "x-ms-request-id": [ - "aa2ca1ce-1237-4918-b8ee-b9ef9228d963" + "c5cedadf-8040-4baa-ad3e-dc152eb9037b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,23 +608,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" + "31947" ], "x-ms-correlation-request-id": [ - "386fb892-b6f1-4cf5-a6de-987a7b412e1e" + "b53aedf8-18f2-4969-8989-0ce545a1b025" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030228Z:386fb892-b6f1-4cf5-a6de-987a7b412e1e" + "CENTRALUS:20150430T025034Z:b53aedf8-18f2-4969-8989-0ce545a1b025" ], "Date": [ - "Sun, 26 Apr 2015 03:02:27 GMT" + "Thu, 30 Apr 2015 02:50:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/279b0d12-ee81-4477-8001-d23b7f44a23b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzI3OWIwZDEyLWVlODEtNDQ3Ny04MDAxLWQyM2I3ZjQ0YTIzYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c3788baf-0f38-4c26-9e0c-a709cb3064a7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2MzNzg4YmFmLTBmMzgtNGMyNi05ZTBjLWE3MDljYjMwNjRhNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -650,7 +650,7 @@ "no-cache" ], "x-ms-request-id": [ - "83382b70-c7f8-48ad-bfcf-83ae3a3eaef6" + "79a9911e-89c3-4a27-a512-2cec6ee5ec4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,23 +663,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" + "31946" ], "x-ms-correlation-request-id": [ - "05fde648-d508-4b3e-844d-0d75b0439b27" + "bd4dc153-16de-432c-bb5f-d3e5fcae95f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030243Z:05fde648-d508-4b3e-844d-0d75b0439b27" + "CENTRALUS:20150430T025044Z:bd4dc153-16de-432c-bb5f-d3e5fcae95f5" ], "Date": [ - "Sun, 26 Apr 2015 03:02:42 GMT" + "Thu, 30 Apr 2015 02:50:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazcyNzgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazIxMzQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -705,13 +705,13 @@ "gateway" ], "x-ms-request-id": [ - "dcbd31c8-b34d-4f79-b4ac-929d5e816ece" + "bd4d6923-d50a-49e4-875c-640a577ef8ba" ], "x-ms-correlation-request-id": [ - "dcbd31c8-b34d-4f79-b4ac-929d5e816ece" + "bd4d6923-d50a-49e4-875c-640a577ef8ba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030243Z:dcbd31c8-b34d-4f79-b4ac-929d5e816ece" + "CENTRALUS:20150430T025052Z:bd4d6923-d50a-49e4-875c-640a577ef8ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,14 +720,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:02:42 GMT" + "Thu, 30 Apr 2015 02:50:51 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazcyNzgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazIxMzQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -735,7 +735,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7278\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278\",\r\n \"etag\": \"W/\\\"3812a191-5d69-4afd-bc8f-4eca541df531\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk6209\",\r\n \"fqdn\": \"onesdk6209.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2134\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134\",\r\n \"etag\": \"W/\\\"2e8a04b3-b236-45d0-9419-eb6458b31339\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk1995\",\r\n \"fqdn\": \"onesdk1995.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "510" @@ -750,7 +750,7 @@ "no-cache" ], "x-ms-request-id": [ - "88ab50a7-59fb-49a2-8853-ac8e698adcb6" + "9b360f1a-6855-4714-aab1-ab8db6dcdd63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,32 +759,32 @@ "no-cache" ], "ETag": [ - "W/\"3812a191-5d69-4afd-bc8f-4eca541df531\"" + "W/\"2e8a04b3-b236-45d0-9419-eb6458b31339\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" + "31941" ], "x-ms-correlation-request-id": [ - "5c467970-a3a8-4bce-8320-45f74d253e77" + "0b5113f9-5e46-4b7a-8da0-b97cbac93b4b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030244Z:5c467970-a3a8-4bce-8320-45f74d253e77" + "CENTRALUS:20150430T025101Z:0b5113f9-5e46-4b7a-8da0-b97cbac93b4b" ], "Date": [ - "Sun, 26 Apr 2015 03:02:44 GMT" + "Thu, 30 Apr 2015 02:51:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazcyNzgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazIxMzQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk6209\"\r\n }\r\n },\r\n \"name\": \"onesdk7278\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk1995\"\r\n }\r\n },\r\n \"name\": \"onesdk2134\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -796,7 +796,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7278\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278\",\r\n \"etag\": \"W/\\\"9b770386-3b5d-4eb1-b59f-4e475385cb42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk6209\",\r\n \"fqdn\": \"onesdk6209.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2134\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134\",\r\n \"etag\": \"W/\\\"ffd9c70b-b7fc-4c52-9147-37eb32eac87c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk1995\",\r\n \"fqdn\": \"onesdk1995.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "509" @@ -814,10 +814,10 @@ "10" ], "x-ms-request-id": [ - "f9897ee3-8a61-4bc0-a3a1-6bdb11b31f8f" + "8d8014cc-8ecd-4c0c-86ff-5c84d729b12b" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/f9897ee3-8a61-4bc0-a3a1-6bdb11b31f8f?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/8d8014cc-8ecd-4c0c-86ff-5c84d729b12b?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -830,23 +830,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1186" ], "x-ms-correlation-request-id": [ - "bbe9e3d2-fbe2-4d88-9d51-3b4d3cbd37ff" + "09eee5f3-7841-40dc-be18-255338810600" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030244Z:bbe9e3d2-fbe2-4d88-9d51-3b4d3cbd37ff" + "CENTRALUS:20150430T025054Z:09eee5f3-7841-40dc-be18-255338810600" ], "Date": [ - "Sun, 26 Apr 2015 03:02:43 GMT" + "Thu, 30 Apr 2015 02:50:54 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/f9897ee3-8a61-4bc0-a3a1-6bdb11b31f8f?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2Y5ODk3ZWUzLThhNjEtNGJjMC1hM2ExLTZiZGIxMWIzMWY4Zj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/8d8014cc-8ecd-4c0c-86ff-5c84d729b12b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzhkODAxNGNjLThlY2QtNGMwYy04NmZmLTVjODRkNzI5YjEyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -872,7 +872,7 @@ "no-cache" ], "x-ms-request-id": [ - "99f73faa-1ad4-4700-a106-8212436bb8be" + "f679c5df-7a13-45bf-aac1-b4631d71a392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,23 +885,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "31942" ], "x-ms-correlation-request-id": [ - "dc2fe1fa-ae8b-4a32-9245-5605027b9174" + "64ddf6ce-a681-463f-a9b2-3d0bfb238ce8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030244Z:dc2fe1fa-ae8b-4a32-9245-5605027b9174" + "CENTRALUS:20150430T025055Z:64ddf6ce-a681-463f-a9b2-3d0bfb238ce8" ], "Date": [ - "Sun, 26 Apr 2015 03:02:43 GMT" + "Thu, 30 Apr 2015 02:50:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/virtualNetworkGateways/onesdk3657?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzY1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNDgzND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -927,13 +927,13 @@ "gateway" ], "x-ms-request-id": [ - "60411a93-0343-41ec-8202-dc6f0e8ec55f" + "932c0d20-ce9f-4ee6-a976-72398fd5a59c" ], "x-ms-correlation-request-id": [ - "60411a93-0343-41ec-8202-dc6f0e8ec55f" + "932c0d20-ce9f-4ee6-a976-72398fd5a59c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030245Z:60411a93-0343-41ec-8202-dc6f0e8ec55f" + "CENTRALUS:20150430T025102Z:932c0d20-ce9f-4ee6-a976-72398fd5a59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -942,14 +942,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:02:44 GMT" + "Thu, 30 Apr 2015 02:51:01 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/virtualNetworkGateways/onesdk3657?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzY1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNDgzND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -957,7 +957,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3808\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworkGateways/onesdk3657/ipConfigurations/onesdk3808\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk9610\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834/ipConfigurations/onesdk9610\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1299" @@ -972,7 +972,7 @@ "no-cache" ], "x-ms-request-id": [ - "363338f2-f506-435d-ad75-149754b7f643" + "a4cf0ed3-2905-4a27-994d-1a7484df1937" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -985,23 +985,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "31937" ], "x-ms-correlation-request-id": [ - "657debe0-00ac-4309-b40a-01449456deed" + "06d7f867-c002-49af-88b1-ea18937e17e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030351Z:657debe0-00ac-4309-b40a-01449456deed" + "CENTRALUS:20150430T025113Z:06d7f867-c002-49af-88b1-ea18937e17e4" ], "Date": [ - "Sun, 26 Apr 2015 03:03:50 GMT" + "Thu, 30 Apr 2015 02:51:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/virtualNetworkGateways/onesdk3657?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzY1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNDgzND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1009,7 +1009,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3808\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworkGateways/onesdk3657/ipConfigurations/onesdk3808\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk9610\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834/ipConfigurations/onesdk9610\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1299" @@ -1024,7 +1024,7 @@ "no-cache" ], "x-ms-request-id": [ - "03b0a8ae-eaff-42cb-8b4b-b8f3ff29e496" + "b3c5dd0d-3b2b-4f0d-89a7-352fae3b3ffa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1037,25 +1037,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "31936" ], "x-ms-correlation-request-id": [ - "b61c30da-23d0-40b2-8f29-d093b3d39ccf" + "98c42152-1d77-4807-ac91-a30a71b9a807" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030351Z:b61c30da-23d0-40b2-8f29-d093b3d39ccf" + "CENTRALUS:20150430T025113Z:98c42152-1d77-4807-ac91-a30a71b9a807" ], "Date": [ - "Sun, 26 Apr 2015 03:03:50 GMT" + "Thu, 30 Apr 2015 02:51:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/virtualnetworkgateways/onesdk3657?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMvb25lc2RrMzY1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualnetworkgateways/onesdk4834?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMvb25lc2RrNDgzND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278\"\r\n }\r\n },\r\n \"name\": \"onesdk3808\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfigurations/onesdk3808\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false\r\n },\r\n \"name\": \"onesdk3657\",\r\n \"type\": \"microsoft.network/virtualnetworkgateways\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134\"\r\n }\r\n },\r\n \"name\": \"onesdk9610\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfigurations/onesdk9610\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false\r\n },\r\n \"name\": \"onesdk4834\",\r\n \"type\": \"microsoft.network/virtualnetworkgateways\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1067,7 +1067,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"etag\": \"W/\\\"324da26d-73b4-4653-be34-c1259c5082bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"de0580b8-25a2-474c-87f7-47241a4d1c9d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3808\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworkGateways/onesdk3657/ipConfigurations/onesdk3808\",\r\n \"etag\": \"W/\\\"324da26d-73b4-4653-be34-c1259c5082bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"etag\": \"W/\\\"2490917b-bda2-41d9-b108-935c6875fe70\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"6c9f77c9-4cc6-44b9-9c6e-c14d6e9a99dd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk9610\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834/ipConfigurations/onesdk9610\",\r\n \"etag\": \"W/\\\"2490917b-bda2-41d9-b108-935c6875fe70\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1387" @@ -1085,10 +1085,10 @@ "10" ], "x-ms-request-id": [ - "1f0fe856-bc91-4c9e-9ef9-5e6265e627a2" + "9f0ebeb3-eac9-42f9-abd4-60884567f6d4" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/1f0fe856-bc91-4c9e-9ef9-5e6265e627a2?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/9f0ebeb3-eac9-42f9-abd4-60884567f6d4?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,23 +1101,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1185" ], "x-ms-correlation-request-id": [ - "5af39ce9-19e6-4dea-bde7-ec594684452a" + "cfd25667-85b8-4bed-997c-06430abff90f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030245Z:5af39ce9-19e6-4dea-bde7-ec594684452a" + "CENTRALUS:20150430T025102Z:cfd25667-85b8-4bed-997c-06430abff90f" ], "Date": [ - "Sun, 26 Apr 2015 03:02:45 GMT" + "Thu, 30 Apr 2015 02:51:01 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/1f0fe856-bc91-4c9e-9ef9-5e6265e627a2?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzFmMGZlODU2LWJjOTEtNGM5ZS05ZWY5LTVlNjI2NWU2MjdhMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/9f0ebeb3-eac9-42f9-abd4-60884567f6d4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzlmMGViZWIzLWVhYzktNDJmOS1hYmQ0LTYwODg0NTY3ZjZkND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1143,7 +1143,7 @@ "no-cache" ], "x-ms-request-id": [ - "4bd2d8bf-166a-49fd-abc3-8e4a7b715335" + "0a2441af-858d-4326-8fdf-6c00c00b3a05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1156,23 +1156,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31935" + "31939" ], "x-ms-correlation-request-id": [ - "9b39a25f-e32a-4e37-aef5-92cd8bdf2c4b" + "a16ba088-db32-4e25-b84f-cbb658e015e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030246Z:9b39a25f-e32a-4e37-aef5-92cd8bdf2c4b" + "CENTRALUS:20150430T025102Z:a16ba088-db32-4e25-b84f-cbb658e015e5" ], "Date": [ - "Sun, 26 Apr 2015 03:02:45 GMT" + "Thu, 30 Apr 2015 02:51:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/1f0fe856-bc91-4c9e-9ef9-5e6265e627a2?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzFmMGZlODU2LWJjOTEtNGM5ZS05ZWY5LTVlNjI2NWU2MjdhMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/9f0ebeb3-eac9-42f9-abd4-60884567f6d4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzlmMGViZWIzLWVhYzktNDJmOS1hYmQ0LTYwODg0NTY3ZjZkND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1198,7 +1198,7 @@ "no-cache" ], "x-ms-request-id": [ - "84887791-5ad3-4046-8647-67a0d9ce3463" + "0a24f103-564e-470d-a646-7369cfdf178b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1211,23 +1211,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "31938" ], "x-ms-correlation-request-id": [ - "8be64f24-147c-4570-9324-dd76718ed3d9" + "4d1836ac-2148-448f-b2ac-8b207530c7f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030326Z:8be64f24-147c-4570-9324-dd76718ed3d9" + "CENTRALUS:20150430T025113Z:4d1836ac-2148-448f-b2ac-8b207530c7f2" ], "Date": [ - "Sun, 26 Apr 2015 03:03:25 GMT" + "Thu, 30 Apr 2015 02:51:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/virtualNetworkGateways/onesdk373?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrMzczP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/localNetworkGateways/onesdk9701?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk3MDE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1253,13 +1253,13 @@ "gateway" ], "x-ms-request-id": [ - "a059a712-bce5-4bb0-b0f4-6a9ac0653bd4" + "b4023e2e-2d5a-46ed-9eaf-5ec252efb237" ], "x-ms-correlation-request-id": [ - "a059a712-bce5-4bb0-b0f4-6a9ac0653bd4" + "b4023e2e-2d5a-46ed-9eaf-5ec252efb237" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030351Z:a059a712-bce5-4bb0-b0f4-6a9ac0653bd4" + "CENTRALUS:20150430T025113Z:b4023e2e-2d5a-46ed-9eaf-5ec252efb237" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1268,31 +1268,25 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:03:50 GMT" + "Thu, 30 Apr 2015 02:51:13 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/localNetworkGateways/onesdk373?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazM3Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"name\": \"onesdk373\",\r\n \"type\": \"microsoft.network/localNetworkGateways\",\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/localNetworkGateways/onesdk9701?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk3MDE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "281" - ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"a30c938c-fdc4-4056-b082-2ff358a6de09\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"c3f53c26-8f74-432e-b84c-20de5916b0ce\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"4ff2acba-0d15-4e6d-aa1d-ee14c60bf31b\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "528" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1303,14 +1297,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "a83e67cf-b0e5-4937-b9bf-eceb965654ac" - ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/a83e67cf-b0e5-4937-b9bf-eceb965654ac?api-version=2015-05-01-preview" + "d8f8f383-67fb-4f04-9891-cf0956737b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1322,38 +1310,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31933" ], "x-ms-correlation-request-id": [ - "7d04b0d2-06bf-4fc3-95e0-ef06f050a320" + "e5965a6b-56ef-40d9-b20c-c8d9dcd54374" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030352Z:7d04b0d2-06bf-4fc3-95e0-ef06f050a320" + "CENTRALUS:20150430T025115Z:e5965a6b-56ef-40d9-b20c-c8d9dcd54374" ], "Date": [ - "Sun, 26 Apr 2015 03:03:52 GMT" + "Thu, 30 Apr 2015 02:51:14 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/a83e67cf-b0e5-4937-b9bf-eceb965654ac?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2E4M2U2N2NmLWIwZTUtNDkzNy1iOWJmLWVjZWI5NjU2NTRhYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/localNetworkGateways/onesdk9701?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk3MDE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"4ff2acba-0d15-4e6d-aa1d-ee14c60bf31b\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1365,7 +1350,7 @@ "no-cache" ], "x-ms-request-id": [ - "f0d90d27-5a2a-4cf2-bdec-31ec2d572239" + "6a9d179a-b628-4cb7-a666-e152d7ad9e6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1378,34 +1363,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "31932" ], "x-ms-correlation-request-id": [ - "34d53dc2-9d5f-43cb-8554-266f8f190c11" + "76747d1e-86b4-4e58-ae84-60c2c47ce0ac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030352Z:34d53dc2-9d5f-43cb-8554-266f8f190c11" + "CENTRALUS:20150430T025115Z:76747d1e-86b4-4e58-ae84-60c2c47ce0ac" ], "Date": [ - "Sun, 26 Apr 2015 03:03:52 GMT" + "Thu, 30 Apr 2015 02:51:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/localNetworkGateways/onesdk373?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazM3Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/localNetworkGateways/onesdk9701?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazk3MDE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"name\": \"onesdk9701\",\r\n \"type\": \"microsoft.network/localNetworkGateways\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "282" + ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"c3f53c26-8f74-432e-b84c-20de5916b0ce\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"0bcd44b7-961c-4afd-9d34-7036c8a25f4a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"4ff2acba-0d15-4e6d-aa1d-ee14c60bf31b\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "529" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1416,8 +1407,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "1a9033e2-2995-4956-b532-4a7833d5ea25" + "89fd7ee0-44ac-4de0-bd15-d190dc9ce4c7" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/89fd7ee0-44ac-4de0-bd15-d190dc9ce4c7?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1429,35 +1426,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" ], "x-ms-correlation-request-id": [ - "eb42865d-8979-402d-81d1-d9370f44450b" + "737d8a52-ef5e-4b7a-bc2a-30ce829b7bea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030352Z:eb42865d-8979-402d-81d1-d9370f44450b" + "CENTRALUS:20150430T025114Z:737d8a52-ef5e-4b7a-bc2a-30ce829b7bea" ], "Date": [ - "Sun, 26 Apr 2015 03:03:52 GMT" + "Thu, 30 Apr 2015 02:51:13 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/localNetworkGateways/onesdk373?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazM3Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/89fd7ee0-44ac-4de0-bd15-d190dc9ce4c7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzg5ZmQ3ZWUwLTQ0YWMtNGRlMC1iZDE1LWQxOTBkYzljZTRjNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"c3f53c26-8f74-432e-b84c-20de5916b0ce\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.10\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "529" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1469,7 +1469,7 @@ "no-cache" ], "x-ms-request-id": [ - "9b2f9fcc-26d6-4d30-85d4-19cfa187155b" + "c9e09c3e-d475-4929-bcfe-5381d708cbde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,23 +1482,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" + "31934" ], "x-ms-correlation-request-id": [ - "292e289e-078a-4fb4-8e9f-d11df85321d7" + "b237c2de-a149-44be-8ff4-9dce326670d7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030352Z:292e289e-078a-4fb4-8e9f-d11df85321d7" + "CENTRALUS:20150430T025114Z:b237c2de-a149-44be-8ff4-9dce326670d7" ], "Date": [ - "Sun, 26 Apr 2015 03:03:52 GMT" + "Thu, 30 Apr 2015 02:51:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections/onesdk1465?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazE0NjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazU1MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1524,13 +1524,13 @@ "gateway" ], "x-ms-request-id": [ - "54f22dfb-0896-4eec-85e5-c0943bfc0927" + "526cd79a-8ff4-4c14-9987-a652ad13df4a" ], "x-ms-correlation-request-id": [ - "54f22dfb-0896-4eec-85e5-c0943bfc0927" + "526cd79a-8ff4-4c14-9987-a652ad13df4a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030353Z:54f22dfb-0896-4eec-85e5-c0943bfc0927" + "CENTRALUS:20150430T025116Z:526cd79a-8ff4-4c14-9987-a652ad13df4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1539,14 +1539,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:03:53 GMT" + "Thu, 30 Apr 2015 02:51:16 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections/onesdk1465?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazE0NjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazU1MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1554,10 +1554,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1465\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/connections/onesdk1465\",\r\n \"etag\": \"W/\\\"02f2c15e-55c0-4b21-94fb-d351945f7319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"d7fd2f4c-6a22-4521-ba5b-9c5face9ea09\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5525\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525\",\r\n \"etag\": \"W/\\\"ef5ab3a2-778e-46be-9814-a4432732ef22\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"a64c2898-e260-4163-b4c8-77b98bf699ad\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1384" + "1386" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1569,7 +1569,7 @@ "no-cache" ], "x-ms-request-id": [ - "72f1e09e-9230-4151-9e3c-060b4b491edc" + "8b9235f4-5a6b-47ce-8afd-7a5efbc38c58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1582,23 +1582,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" + "31929" ], "x-ms-correlation-request-id": [ - "60f0bb68-e44b-439b-9d9a-7e5e3aa17acb" + "4ab33b91-5658-4e5f-8224-5055caf8d204" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030400Z:60f0bb68-e44b-439b-9d9a-7e5e3aa17acb" + "CENTRALUS:20150430T025117Z:4ab33b91-5658-4e5f-8224-5055caf8d204" ], "Date": [ - "Sun, 26 Apr 2015 03:04:00 GMT" + "Thu, 30 Apr 2015 02:51:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections/onesdk1465?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazE0NjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazU1MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1606,10 +1606,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1465\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/connections/onesdk1465\",\r\n \"etag\": \"W/\\\"02f2c15e-55c0-4b21-94fb-d351945f7319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"d7fd2f4c-6a22-4521-ba5b-9c5face9ea09\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5525\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525\",\r\n \"etag\": \"W/\\\"ef5ab3a2-778e-46be-9814-a4432732ef22\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"a64c2898-e260-4163-b4c8-77b98bf699ad\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1384" + "1386" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1621,7 +1621,7 @@ "no-cache" ], "x-ms-request-id": [ - "13ffa3c3-4910-4b2a-8a66-1fed199aeb0e" + "5f115bfd-8ef7-4a15-9ff1-bce52f048b81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1634,23 +1634,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "31928" ], "x-ms-correlation-request-id": [ - "95b58e83-062f-4604-b956-c59dfdd816a5" + "29e099b9-452b-48ee-9dbf-3cf8477d3c61" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030400Z:95b58e83-062f-4604-b956-c59dfdd816a5" + "CENTRALUS:20150430T025117Z:29e099b9-452b-48ee-9dbf-3cf8477d3c61" ], "Date": [ - "Sun, 26 Apr 2015 03:04:00 GMT" + "Thu, 30 Apr 2015 02:51:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections/onesdk1465?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazE0NjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazU1MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1658,10 +1658,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1465\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/connections/onesdk1465\",\r\n \"etag\": \"W/\\\"02f2c15e-55c0-4b21-94fb-d351945f7319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"d7fd2f4c-6a22-4521-ba5b-9c5face9ea09\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5525\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525\",\r\n \"etag\": \"W/\\\"ef5ab3a2-778e-46be-9814-a4432732ef22\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"a64c2898-e260-4163-b4c8-77b98bf699ad\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1384" + "1386" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1673,7 +1673,7 @@ "no-cache" ], "x-ms-request-id": [ - "852b10b9-d204-4a92-91b5-357f0028e4b2" + "6aeb2b38-49a7-4f6f-911c-9f37a61406e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1686,23 +1686,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "31926" ], "x-ms-correlation-request-id": [ - "887e58c5-f56c-40c7-9687-e82f46970bce" + "e7bef6cc-c296-40a8-a4ed-039ff1fab96c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030400Z:887e58c5-f56c-40c7-9687-e82f46970bce" + "CENTRALUS:20150430T025117Z:e7bef6cc-c296-40a8-a4ed-039ff1fab96c" ], "Date": [ - "Sun, 26 Apr 2015 03:04:00 GMT" + "Thu, 30 Apr 2015 02:51:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections/onesdk1465?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazE0NjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazU1MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1710,10 +1710,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1465\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/connections/onesdk1465\",\r\n \"etag\": \"W/\\\"36ed2ea7-958e-45a4-a3fb-a02c58c0de67\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5525\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525\",\r\n \"etag\": \"W/\\\"f18d1531-a652-4f0b-8fbf-65ac5afdf3b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1388" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1725,7 +1725,7 @@ "no-cache" ], "x-ms-request-id": [ - "23fa8fe7-c27e-4aca-8479-0c85230a485f" + "8e9921d1-ca2f-4a6d-85ea-68d257add065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1738,23 +1738,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "31924" ], "x-ms-correlation-request-id": [ - "7bdeaf8d-180b-4314-b704-b83250589e9e" + "d59753f6-1849-4e94-83ba-67701473c6a0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030407Z:7bdeaf8d-180b-4314-b704-b83250589e9e" + "CENTRALUS:20150430T025118Z:d59753f6-1849-4e94-83ba-67701473c6a0" ], "Date": [ - "Sun, 26 Apr 2015 03:04:06 GMT" + "Thu, 30 Apr 2015 02:51:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections/onesdk1465?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazE0NjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazU1MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1762,10 +1762,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1465\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/connections/onesdk1465\",\r\n \"etag\": \"W/\\\"36ed2ea7-958e-45a4-a3fb-a02c58c0de67\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5525\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525\",\r\n \"etag\": \"W/\\\"f18d1531-a652-4f0b-8fbf-65ac5afdf3b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1388" + "1390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1777,7 +1777,7 @@ "no-cache" ], "x-ms-request-id": [ - "bce6bd42-b4e3-4cea-8458-12776e6aa458" + "aed7b517-5be4-4309-90a4-a2fbad73bb51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1790,40 +1790,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31919" + "31923" ], "x-ms-correlation-request-id": [ - "87385119-e87d-4eb0-abb8-7643490fb413" + "59c1263a-fea0-4f59-bb8a-1e554bcb9e9b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030407Z:87385119-e87d-4eb0-abb8-7643490fb413" + "CENTRALUS:20150430T025118Z:59c1263a-fea0-4f59-bb8a-1e554bcb9e9b" ], "Date": [ - "Sun, 26 Apr 2015 03:04:06 GMT" + "Thu, 30 Apr 2015 02:51:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections/onesdk1465?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazE0NjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazU1MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworks/onesdk7370/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/publicIPAddresses/onesdk7278\"\r\n },\r\n \"name\": \"onesdk3808\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworkGateways/onesdk3657/ipConfigurations/onesdk3808\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"name\": \"onesdk3657\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"name\": \"onesdk373\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"name\": \"onesdk1465\",\r\n \"type\": \"microsoft.network/connections\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworks/onesdk6980/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/publicIPAddresses/onesdk2134\"\r\n },\r\n \"name\": \"onesdk9610\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834/ipConfigurations/onesdk9610\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"name\": \"onesdk4834\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"gatewayIpAddress\": \"192.168.3.10\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"name\": \"onesdk9701\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"name\": \"onesdk5525\",\r\n \"type\": \"microsoft.network/connections\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "2061" + "2063" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1465\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/connections/onesdk1465\",\r\n \"etag\": \"W/\\\"e5fc5998-4924-4655-bb2e-a90a0dbcdd25\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"d7fd2f4c-6a22-4521-ba5b-9c5face9ea09\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5525\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525\",\r\n \"etag\": \"W/\\\"b356ce52-e366-4603-8835-21acafd76068\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"a64c2898-e260-4163-b4c8-77b98bf699ad\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1383" + "1385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1838,10 +1838,10 @@ "10" ], "x-ms-request-id": [ - "2c431bcd-0f94-4e3a-96db-203fcc2b76cc" + "f8dc5a74-918c-4c63-bcad-d3dda32b8e73" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/2c431bcd-0f94-4e3a-96db-203fcc2b76cc?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/f8dc5a74-918c-4c63-bcad-d3dda32b8e73?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1854,40 +1854,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1183" ], "x-ms-correlation-request-id": [ - "e789b831-cc3c-4e2a-8377-8da57738fd8f" + "929dbd01-f51b-4295-826f-2e94524212b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030359Z:e789b831-cc3c-4e2a-8377-8da57738fd8f" + "CENTRALUS:20150430T025116Z:929dbd01-f51b-4295-826f-2e94524212b6" ], "Date": [ - "Sun, 26 Apr 2015 03:03:59 GMT" + "Thu, 30 Apr 2015 02:51:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections/onesdk1465?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazE0NjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazU1MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"ipConfigurations\": [],\r\n \"enableBgp\": false,\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"name\": \"onesdk3657\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"name\": \"onesdk373\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n },\r\n \"etag\": \"W/\\\"02f2c15e-55c0-4b21-94fb-d351945f7319\\\"\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/connections/onesdk1465\",\r\n \"name\": \"onesdk1465\",\r\n \"type\": \"microsoft.network/connections\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"ipConfigurations\": [],\r\n \"enableBgp\": false,\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"name\": \"onesdk4834\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"name\": \"onesdk9701\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n },\r\n \"etag\": \"W/\\\"ef5ab3a2-778e-46be-9814-a4432732ef22\\\"\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525\",\r\n \"name\": \"onesdk5525\",\r\n \"type\": \"microsoft.network/connections\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1137" + "1139" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1465\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/connections/onesdk1465\",\r\n \"etag\": \"W/\\\"80a45697-c83b-4ec9-8f1f-48beb63067ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5525\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525\",\r\n \"etag\": \"W/\\\"eedbd803-9f80-4b4f-bd50-1db5c8177b77\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1387" + "1389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1902,10 +1902,10 @@ "10" ], "x-ms-request-id": [ - "76e130f9-4800-417f-81e0-e90b3644331d" + "dd57e6ef-4c96-482d-9f4c-23b22c2c93a2" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/76e130f9-4800-417f-81e0-e90b3644331d?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/dd57e6ef-4c96-482d-9f4c-23b22c2c93a2?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1918,23 +1918,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1182" ], "x-ms-correlation-request-id": [ - "7bae3bc8-ac09-4f67-86db-e4e12e438238" + "390c4bcd-0133-4c3a-809e-f59ecf4564da" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030406Z:7bae3bc8-ac09-4f67-86db-e4e12e438238" + "CENTRALUS:20150430T025118Z:390c4bcd-0133-4c3a-809e-f59ecf4564da" ], "Date": [ - "Sun, 26 Apr 2015 03:04:06 GMT" + "Thu, 30 Apr 2015 02:51:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/2c431bcd-0f94-4e3a-96db-203fcc2b76cc?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzJjNDMxYmNkLTBmOTQtNGUzYS05NmRiLTIwM2ZjYzJiNzZjYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/f8dc5a74-918c-4c63-bcad-d3dda32b8e73?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2Y4ZGM1YTc0LTkxOGMtNGM2My1iY2FkLWQzZGRhMzJiOGU3Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1960,7 +1960,7 @@ "no-cache" ], "x-ms-request-id": [ - "28bfe53f-4d70-48dd-a03b-6173fdc70fc1" + "bc827fa2-5ed3-428f-b37b-55e7c6dda2d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1973,23 +1973,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" + "31930" ], "x-ms-correlation-request-id": [ - "2ec69d2d-17c0-4b1a-92d1-a7a2cead4c07" + "b2820517-ed73-4c5b-b8ee-85d0e200fab5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030400Z:2ec69d2d-17c0-4b1a-92d1-a7a2cead4c07" + "CENTRALUS:20150430T025117Z:b2820517-ed73-4c5b-b8ee-85d0e200fab5" ], "Date": [ - "Sun, 26 Apr 2015 03:03:59 GMT" + "Thu, 30 Apr 2015 02:51:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1997,10 +1997,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk1465\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/Microsoft.Network/connections/onesdk1465\",\r\n \"etag\": \"W/\\\"02f2c15e-55c0-4b21-94fb-d351945f7319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"d7fd2f4c-6a22-4521-ba5b-9c5face9ea09\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk3657\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk3657\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk373\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk373\",\r\n \"etag\": \"W/\\\"25f7b12b-f892-46d7-94c7-38b3aabba7fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk5525\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525\",\r\n \"etag\": \"W/\\\"ef5ab3a2-778e-46be-9814-a4432732ef22\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"a64c2898-e260-4163-b4c8-77b98bf699ad\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk4834\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk4834\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk9701\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk9701\",\r\n \"etag\": \"W/\\\"4be806ea-4dad-4697-9c0b-0ceab5b6f82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2012,7 +2012,7 @@ "no-cache" ], "x-ms-request-id": [ - "dd78d681-3617-4bd1-a75a-9c8ddf60156d" + "ef87f91f-d341-420c-94f9-2a8b7885c0a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2025,23 +2025,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "31927" ], "x-ms-correlation-request-id": [ - "d1ea3b00-02b5-438a-9e52-28cd4ec79fce" + "7e0f7a4b-cee3-4d1c-9d82-c4f39b7831e8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030400Z:d1ea3b00-02b5-438a-9e52-28cd4ec79fce" + "CENTRALUS:20150430T025117Z:7e0f7a4b-cee3-4d1c-9d82-c4f39b7831e8" ], "Date": [ - "Sun, 26 Apr 2015 03:04:00 GMT" + "Thu, 30 Apr 2015 02:51:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2064,7 +2064,7 @@ "no-cache" ], "x-ms-request-id": [ - "b4d7b3d9-bcab-4ed3-8b22-b9364e30051f" + "b20b000c-15e6-418a-85ce-01878f76b7b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2077,23 +2077,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31917" + "31921" ], "x-ms-correlation-request-id": [ - "156cb684-643e-4a9f-bc64-296067d5e59d" + "f21d1c8c-07d6-4a4d-9526-514a499db8bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030408Z:156cb684-643e-4a9f-bc64-296067d5e59d" + "CENTRALUS:20150430T025119Z:f21d1c8c-07d6-4a4d-9526-514a499db8bf" ], "Date": [ - "Sun, 26 Apr 2015 03:04:08 GMT" + "Thu, 30 Apr 2015 02:51:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/76e130f9-4800-417f-81e0-e90b3644331d?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzc2ZTEzMGY5LTQ4MDAtNDE3Zi04MWUwLWU5MGIzNjQ0MzMxZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/dd57e6ef-4c96-482d-9f4c-23b22c2c93a2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2RkNTdlNmVmLTRjOTYtNDgyZC05ZjRjLTIzYjIyYzJjOTNhMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2119,7 +2119,7 @@ "no-cache" ], "x-ms-request-id": [ - "08301825-e822-41b5-84c6-16234ff54349" + "7e33b03e-8410-432e-8189-96f9af675933" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2132,23 +2132,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" + "31925" ], "x-ms-correlation-request-id": [ - "e519bb60-6d7d-4161-bf14-ca12dd4753d8" + "ea33225c-cc47-4e70-a6e5-db9039269434" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030407Z:e519bb60-6d7d-4161-bf14-ca12dd4753d8" + "CENTRALUS:20150430T025118Z:ea33225c-cc47-4e70-a6e5-db9039269434" ], "Date": [ - "Sun, 26 Apr 2015 03:04:06 GMT" + "Thu, 30 Apr 2015 02:51:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk2946/providers/microsoft.network/connections/onesdk1465/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDYvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazE0NjUvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk1701/providers/Microsoft.Network/connections/onesdk5525/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazU1MjUvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2171,10 +2171,10 @@ "10" ], "x-ms-request-id": [ - "7e931c0e-0e4a-4232-9e64-39f7e5b2ee2e" + "c800a133-368a-4d5f-921d-db1e00f50a9d" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/7e931c0e-0e4a-4232-9e64-39f7e5b2ee2e?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c800a133-368a-4d5f-921d-db1e00f50a9d?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2183,30 +2183,30 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operationResults/7e931c0e-0e4a-4232-9e64-39f7e5b2ee2e?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operationResults/c800a133-368a-4d5f-921d-db1e00f50a9d?api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1181" ], "x-ms-correlation-request-id": [ - "ddb60e59-03d0-4ff3-9d2d-a123644140ff" + "9c7eb58f-540a-41c4-a70e-333d6dc38fb6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030408Z:ddb60e59-03d0-4ff3-9d2d-a123644140ff" + "CENTRALUS:20150430T025118Z:9c7eb58f-540a-41c4-a70e-333d6dc38fb6" ], "Date": [ - "Sun, 26 Apr 2015 03:04:08 GMT" + "Thu, 30 Apr 2015 02:51:18 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/7e931c0e-0e4a-4232-9e64-39f7e5b2ee2e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzdlOTMxYzBlLTBlNGEtNDIzMi05ZTY0LTM5ZjdlNWIyZWUyZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c800a133-368a-4d5f-921d-db1e00f50a9d?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2M4MDBhMTMzLTM2OGEtNGQ1Zi05MjFkLWRiMWUwMGY1MGE5ZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2232,7 +2232,7 @@ "no-cache" ], "x-ms-request-id": [ - "781b4e72-9b66-4a0f-8819-734b6302d89d" + "d4fdd4e6-abb6-403c-9c26-628d1e0666cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2245,23 +2245,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31918" + "31922" ], "x-ms-correlation-request-id": [ - "1344aa86-3999-4faa-a80d-b7a07576e1c5" + "0ea0b3d7-05c9-4ef0-9b82-41341e719222" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030408Z:1344aa86-3999-4faa-a80d-b7a07576e1c5" + "CENTRALUS:20150430T025119Z:0ea0b3d7-05c9-4ef0-9b82-41341e719222" ], "Date": [ - "Sun, 26 Apr 2015 03:04:08 GMT" + "Thu, 30 Apr 2015 02:51:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk2946?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk1701?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2284,16 +2284,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1193" ], "x-ms-request-id": [ - "98362ee3-7c4d-4154-b63d-d8bacbddbab3" + "09e39c16-64c7-4106-b218-0ebf9239ab88" ], "x-ms-correlation-request-id": [ - "98362ee3-7c4d-4154-b63d-d8bacbddbab3" + "09e39c16-64c7-4106-b218-0ebf9239ab88" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030408Z:98362ee3-7c4d-4154-b63d-d8bacbddbab3" + "CENTRALUS:20150430T025121Z:09e39c16-64c7-4106-b218-0ebf9239ab88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2302,17 +2302,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:04:08 GMT" + "Thu, 30 Apr 2015 02:51:21 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFEyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2338,16 +2338,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31915" + "31947" ], "x-ms-request-id": [ - "2849b44c-6bd7-478e-aaeb-c6c8e79d539a" + "c0efc720-24bf-460f-b7d2-65447058531e" ], "x-ms-correlation-request-id": [ - "2849b44c-6bd7-478e-aaeb-c6c8e79d539a" + "c0efc720-24bf-460f-b7d2-65447058531e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030408Z:2849b44c-6bd7-478e-aaeb-c6c8e79d539a" + "CENTRALUS:20150430T025122Z:c0efc720-24bf-460f-b7d2-65447058531e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2356,17 +2356,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:04:08 GMT" + "Thu, 30 Apr 2015 02:51:21 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFEyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2392,16 +2392,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31914" + "31946" ], "x-ms-request-id": [ - "2a136eb8-d8ba-48cc-88b7-17d1468087d7" + "ab70dab1-be52-43b1-a19e-2f80641b808e" ], "x-ms-correlation-request-id": [ - "2a136eb8-d8ba-48cc-88b7-17d1468087d7" + "ab70dab1-be52-43b1-a19e-2f80641b808e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030429Z:2a136eb8-d8ba-48cc-88b7-17d1468087d7" + "CENTRALUS:20150430T025137Z:ab70dab1-be52-43b1-a19e-2f80641b808e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2410,17 +2410,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:04:29 GMT" + "Thu, 30 Apr 2015 02:51:36 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFEyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2446,16 +2446,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31913" + "31945" ], "x-ms-request-id": [ - "9da3c071-5ccc-425b-a4c0-af0045d3db4a" + "668beeb1-2d0a-4495-a56e-da389cb9f48f" ], "x-ms-correlation-request-id": [ - "9da3c071-5ccc-425b-a4c0-af0045d3db4a" + "668beeb1-2d0a-4495-a56e-da389cb9f48f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030444Z:9da3c071-5ccc-425b-a4c0-af0045d3db4a" + "CENTRALUS:20150430T025152Z:668beeb1-2d0a-4495-a56e-da389cb9f48f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2464,17 +2464,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:04:44 GMT" + "Thu, 30 Apr 2015 02:51:51 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFEyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2500,16 +2500,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31912" + "31944" ], "x-ms-request-id": [ - "a08885d4-5e3d-4c4f-a880-e4fc97f23321" + "bc71f22e-bae8-4252-be88-a8e28870f401" ], "x-ms-correlation-request-id": [ - "a08885d4-5e3d-4c4f-a880-e4fc97f23321" + "bc71f22e-bae8-4252-be88-a8e28870f401" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030500Z:a08885d4-5e3d-4c4f-a880-e4fc97f23321" + "CENTRALUS:20150430T025207Z:bc71f22e-bae8-4252-be88-a8e28870f401" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2518,17 +2518,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:05:00 GMT" + "Thu, 30 Apr 2015 02:52:06 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFEyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2554,16 +2554,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31911" + "31943" ], "x-ms-request-id": [ - "c36b3110-56d2-4025-93fe-454b8540f14a" + "967ed099-7156-4485-bef7-29cab90034a7" ], "x-ms-correlation-request-id": [ - "c36b3110-56d2-4025-93fe-454b8540f14a" + "967ed099-7156-4485-bef7-29cab90034a7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030515Z:c36b3110-56d2-4025-93fe-454b8540f14a" + "CENTRALUS:20150430T025243Z:967ed099-7156-4485-bef7-29cab90034a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2572,17 +2572,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:05:15 GMT" + "Thu, 30 Apr 2015 02:52:42 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFEyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2608,16 +2608,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31910" + "31942" ], "x-ms-request-id": [ - "58653416-a4be-4a4f-b923-cd808e6be120" + "276ee8c4-1c20-441c-a047-0869d214acc9" ], "x-ms-correlation-request-id": [ - "58653416-a4be-4a4f-b923-cd808e6be120" + "276ee8c4-1c20-441c-a047-0869d214acc9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030530Z:58653416-a4be-4a4f-b923-cd808e6be120" + "CENTRALUS:20150430T025258Z:276ee8c4-1c20-441c-a047-0869d214acc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2626,17 +2626,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:05:30 GMT" + "Thu, 30 Apr 2015 02:52:58 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFEyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2658,17 +2658,233 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31909" + "31941" + ], + "x-ms-request-id": [ + "6373256f-22a3-4b14-b735-67441ec38c2d" + ], + "x-ms-correlation-request-id": [ + "6373256f-22a3-4b14-b735-67441ec38c2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T025313Z:6373256f-22a3-4b14-b735-67441ec38c2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:53:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31940" + ], + "x-ms-request-id": [ + "d7e2d221-96cb-467b-b67d-213201dc146c" + ], + "x-ms-correlation-request-id": [ + "d7e2d221-96cb-467b-b67d-213201dc146c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T025328Z:d7e2d221-96cb-467b-b67d-213201dc146c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:53:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31939" + ], + "x-ms-request-id": [ + "8063cad8-b5f7-47bb-8614-59761c8c5e09" + ], + "x-ms-correlation-request-id": [ + "8063cad8-b5f7-47bb-8614-59761c8c5e09" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T025343Z:8063cad8-b5f7-47bb-8614-59761c8c5e09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:53:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31938" + ], + "x-ms-request-id": [ + "8f2094a4-2667-4c48-a163-754ab1b7c7f4" + ], + "x-ms-correlation-request-id": [ + "8f2094a4-2667-4c48-a163-754ab1b7c7f4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T025358Z:8f2094a4-2667-4c48-a163-754ab1b7c7f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:53:57 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekF4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31937" ], "x-ms-request-id": [ - "ced57660-1564-4a88-b046-72c8e696eaa5" + "5da2f9fc-97ad-4b09-b867-7550c140082c" ], "x-ms-correlation-request-id": [ - "ced57660-1564-4a88-b046-72c8e696eaa5" + "5da2f9fc-97ad-4b09-b867-7550c140082c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030550Z:ced57660-1564-4a88-b046-72c8e696eaa5" + "CENTRALUS:20150430T025413Z:5da2f9fc-97ad-4b09-b867-7550c140082c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2677,7 +2893,7 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:05:50 GMT" + "Thu, 30 Apr 2015 02:54:13 GMT" ] }, "StatusCode": 200 @@ -2685,14 +2901,14 @@ ], "Names": { "Test-VirtualNetworkGatewayConnectionCRUD": [ - "onesdk2946", - "onesdk3657", - "onesdk6209", - "onesdk7370", - "onesdk373", - "onesdk1465", - "onesdk7278", - "onesdk3808" + "onesdk1701", + "onesdk4834", + "onesdk1995", + "onesdk6980", + "onesdk9701", + "onesdk5525", + "onesdk2134", + "onesdk9610" ] }, "Variables": { diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionSharedKeyCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionSharedKeyCRUD.json index d2c62b4a0b57..126f6af4a215 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionSharedKeyCRUD.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayConnectionTests/TestVirtualNetworkGatewayConnectionSharedKeyCRUD.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "52800" + "52683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "31945" ], "x-ms-request-id": [ - "bb8b4429-4fb5-4cec-8dec-a829b0456d99" + "2b26096c-6e72-41b0-8c73-aba721b7364e" ], "x-ms-correlation-request-id": [ - "bb8b4429-4fb5-4cec-8dec-a829b0456d99" + "2b26096c-6e72-41b0-8c73-aba721b7364e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030800Z:bb8b4429-4fb5-4cec-8dec-a829b0456d99" + "CENTRALUS:20150430T024558Z:2b26096c-6e72-41b0-8c73-aba721b7364e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:00 GMT" + "Thu, 30 Apr 2015 02:45:57 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestPool\",\r\n \"namespace\": \"Microsoft.DevTestPool\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"nodes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"baseImages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "52800" + "52683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,13 +76,13 @@ "31944" ], "x-ms-request-id": [ - "c763774d-c0ca-43f7-acc4-829da2358140" + "80419de5-63ce-435a-8d7f-d6a94f3d7d0a" ], "x-ms-correlation-request-id": [ - "c763774d-c0ca-43f7-acc4-829da2358140" + "80419de5-63ce-435a-8d7f-d6a94f3d7d0a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030801Z:c763774d-c0ca-43f7-acc4-829da2358140" + "CENTRALUS:20150430T024558Z:80419de5-63ce-435a-8d7f-d6a94f3d7d0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +91,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:00 GMT" + "Thu, 30 Apr 2015 02:45:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4111?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQxMTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk451?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -109,7 +109,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,13 +127,13 @@ "31943" ], "x-ms-request-id": [ - "3004a4ef-cb2c-4396-97c1-4cfb24bbb4c5" + "74d7f01a-174c-4e83-8954-7923afaaafd3" ], "x-ms-correlation-request-id": [ - "3004a4ef-cb2c-4396-97c1-4cfb24bbb4c5" + "74d7f01a-174c-4e83-8954-7923afaaafd3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030801Z:3004a4ef-cb2c-4396-97c1-4cfb24bbb4c5" + "CENTRALUS:20150430T024604Z:74d7f01a-174c-4e83-8954-7923afaaafd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -142,14 +142,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:00 GMT" + "Thu, 30 Apr 2015 02:46:03 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4111?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQxMTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk451?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -172,13 +172,13 @@ "31941" ], "x-ms-request-id": [ - "a284dc72-564a-4273-9bf4-c5265cd685f1" + "59b5617d-caa4-4f6d-9634-9eb814b7f3d3" ], "x-ms-correlation-request-id": [ - "a284dc72-564a-4273-9bf4-c5265cd685f1" + "59b5617d-caa4-4f6d-9634-9eb814b7f3d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030842Z:a284dc72-564a-4273-9bf4-c5265cd685f1" + "CENTRALUS:20150430T024653Z:59b5617d-caa4-4f6d-9634-9eb814b7f3d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -187,14 +187,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:42 GMT" + "Thu, 30 Apr 2015 02:46:52 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4111?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQxMTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk451?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { @@ -208,10 +208,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111\",\r\n \"name\": \"onesdk4111\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451\",\r\n \"name\": \"onesdk451\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "202" + "200" ], "Content-Type": [ "application/json; charset=utf-8" @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1184" ], "x-ms-request-id": [ - "f52261cd-5cf5-44be-a6cb-d4c6b3acf74d" + "5ddc53c4-89d9-4382-a965-7a3522cc14eb" ], "x-ms-correlation-request-id": [ - "f52261cd-5cf5-44be-a6cb-d4c6b3acf74d" + "5ddc53c4-89d9-4382-a965-7a3522cc14eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030801Z:f52261cd-5cf5-44be-a6cb-d4c6b3acf74d" + "CENTRALUS:20150430T024604Z:5ddc53c4-89d9-4382-a965-7a3522cc14eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +241,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:01 GMT" + "Thu, 30 Apr 2015 02:46:03 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,13 +274,13 @@ "31942" ], "x-ms-request-id": [ - "3e23c998-e5e0-448a-84f4-67d7f38da918" + "4e86ecd4-9f9a-47bf-b910-dd8c3ac2c1c7" ], "x-ms-correlation-request-id": [ - "3e23c998-e5e0-448a-84f4-67d7f38da918" + "4e86ecd4-9f9a-47bf-b910-dd8c3ac2c1c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030801Z:3e23c998-e5e0-448a-84f4-67d7f38da918" + "CENTRALUS:20150430T024605Z:4e86ecd4-9f9a-47bf-b910-dd8c3ac2c1c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,14 +289,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:01 GMT" + "Thu, 30 Apr 2015 02:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4111/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk451/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -322,16 +322,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:640e74cb-5622-47fe-b4cb-ce6389311066" + "centralus:99c4805f-3ffa-4128-b1ae-82214cbf6849" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "31953" ], "x-ms-correlation-request-id": [ - "4b3ea233-913d-47b4-b321-0bb3752dface" + "f3d8c948-1658-468b-8386-819ea74cee45" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030805Z:4b3ea233-913d-47b4-b321-0bb3752dface" + "CENTRALUS:20150430T024609Z:f3d8c948-1658-468b-8386-819ea74cee45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,14 +340,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:05 GMT" + "Thu, 30 Apr 2015 02:46:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualnetworks/onesdk5554?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs1NTU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualnetworks/onesdk5569?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -373,13 +373,13 @@ "gateway" ], "x-ms-request-id": [ - "c8edf818-9341-4e09-a5c1-94c27db37d91" + "9a8bd552-f4dc-4ef9-a6c0-987ee07dd638" ], "x-ms-correlation-request-id": [ - "c8edf818-9341-4e09-a5c1-94c27db37d91" + "9a8bd552-f4dc-4ef9-a6c0-987ee07dd638" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030841Z:c8edf818-9341-4e09-a5c1-94c27db37d91" + "CENTRALUS:20150430T024611Z:9a8bd552-f4dc-4ef9-a6c0-987ee07dd638" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -388,14 +388,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:41 GMT" + "Thu, 30 Apr 2015 02:46:11 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualnetworks/onesdk5554?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs1NTU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualnetworks/onesdk5569?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -403,10 +403,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5554\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554\",\r\n \"etag\": \"W/\\\"3e48ddb0-41ac-4560-8faf-b5ae853bfa0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"3e48ddb0-41ac-4560-8faf-b5ae853bfa0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5569\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569\",\r\n \"etag\": \"W/\\\"54c4ec63-1ffe-4b5b-b3d9-a64f78c579c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"54c4ec63-1ffe-4b5b-b3d9-a64f78c579c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "847" + "845" ], "Content-Type": [ "application/json; charset=utf-8" @@ -418,7 +418,7 @@ "no-cache" ], "x-ms-request-id": [ - "c3e97b6d-f165-4923-9ebf-75a3bd458305" + "c9225fad-0f9d-4e16-866c-820ba59b89a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,30 +427,30 @@ "no-cache" ], "ETag": [ - "W/\"3e48ddb0-41ac-4560-8faf-b5ae853bfa0a\"" + "W/\"54c4ec63-1ffe-4b5b-b3d9-a64f78c579c2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" + "31940" ], "x-ms-correlation-request-id": [ - "927addb3-375c-430a-9491-95a67d7735e6" + "0f0bdbc3-e63f-4440-a695-6c55567013ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030859Z:927addb3-375c-430a-9491-95a67d7735e6" + "CENTRALUS:20150430T024624Z:0f0bdbc3-e63f-4440-a695-6c55567013ca" ], "Date": [ - "Sun, 26 Apr 2015 03:08:59 GMT" + "Thu, 30 Apr 2015 02:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualnetworks/onesdk5554?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs1NTU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualnetworks/onesdk5569?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -458,10 +458,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5554\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554\",\r\n \"etag\": \"W/\\\"3e48ddb0-41ac-4560-8faf-b5ae853bfa0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"3e48ddb0-41ac-4560-8faf-b5ae853bfa0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5569\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569\",\r\n \"etag\": \"W/\\\"54c4ec63-1ffe-4b5b-b3d9-a64f78c579c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"54c4ec63-1ffe-4b5b-b3d9-a64f78c579c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "847" + "845" ], "Content-Type": [ "application/json; charset=utf-8" @@ -473,7 +473,7 @@ "no-cache" ], "x-ms-request-id": [ - "eab177b4-62b1-48c3-aa48-ffc18728278b" + "a8b6790f-7ec8-4378-b84c-5eba3ca62411" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -482,32 +482,32 @@ "no-cache" ], "ETag": [ - "W/\"3e48ddb0-41ac-4560-8faf-b5ae853bfa0a\"" + "W/\"54c4ec63-1ffe-4b5b-b3d9-a64f78c579c2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" + "31939" ], "x-ms-correlation-request-id": [ - "67a5d7ff-2c1f-4ea8-b88c-9a423c54c3b6" + "1b6c839c-d89d-4300-b76d-084e6c46e327" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030859Z:67a5d7ff-2c1f-4ea8-b88c-9a423c54c3b6" + "CENTRALUS:20150430T024624Z:1b6c839c-d89d-4300-b76d-084e6c46e327" ], "Date": [ - "Sun, 26 Apr 2015 03:08:59 GMT" + "Thu, 30 Apr 2015 02:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualnetworks/onesdk5554?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9vbmVzZGs1NTU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualnetworks/onesdk5569?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk5554\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk5569\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -519,10 +519,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5554\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554\",\r\n \"etag\": \"W/\\\"04306153-e9f0-4eb0-8e8c-4dbea7378382\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"04306153-e9f0-4eb0-8e8c-4dbea7378382\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5569\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569\",\r\n \"etag\": \"W/\\\"4db4b63f-6faf-45e5-8c93-b5f75d2e2d9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"4db4b63f-6faf-45e5-8c93-b5f75d2e2d9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "845" + "843" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,10 +537,10 @@ "10" ], "x-ms-request-id": [ - "afbcb514-7628-4fad-9e06-60591bcbb8b1" + "973c3d91-4025-466b-9e0e-6c75846d356c" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/afbcb514-7628-4fad-9e06-60591bcbb8b1?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/973c3d91-4025-466b-9e0e-6c75846d356c?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,23 +553,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1193" ], "x-ms-correlation-request-id": [ - "a5b0b925-a5d4-4448-a480-b197214e11af" + "aa31b0b6-e36e-4c59-b77a-b0557c93ca08" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030848Z:a5b0b925-a5d4-4448-a480-b197214e11af" + "CENTRALUS:20150430T024612Z:aa31b0b6-e36e-4c59-b77a-b0557c93ca08" ], "Date": [ - "Sun, 26 Apr 2015 03:08:47 GMT" + "Thu, 30 Apr 2015 02:46:12 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/afbcb514-7628-4fad-9e06-60591bcbb8b1?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2FmYmNiNTE0LTc2MjgtNGZhZC05ZTA2LTYwNTkxYmNiYjhiMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/973c3d91-4025-466b-9e0e-6c75846d356c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzk3M2MzZDkxLTQwMjUtNDY2Yi05ZTBlLTZjNzU4NDZkMzU2Yz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,7 +595,7 @@ "no-cache" ], "x-ms-request-id": [ - "466a3eb9-8bd6-4edd-9c5e-0b770da56b41" + "eb3426a3-692c-472f-ae07-4187f9fcb04b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,23 +608,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31951" + "31942" ], "x-ms-correlation-request-id": [ - "a58ba552-c85b-47ba-a150-ce11969dec7e" + "2630a192-43ad-4031-b8fc-d4b268a67b15" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030848Z:a58ba552-c85b-47ba-a150-ce11969dec7e" + "CENTRALUS:20150430T024613Z:2630a192-43ad-4031-b8fc-d4b268a67b15" ], "Date": [ - "Sun, 26 Apr 2015 03:08:48 GMT" + "Thu, 30 Apr 2015 02:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/afbcb514-7628-4fad-9e06-60591bcbb8b1?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2FmYmNiNTE0LTc2MjgtNGZhZC05ZTA2LTYwNTkxYmNiYjhiMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/973c3d91-4025-466b-9e0e-6c75846d356c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzk3M2MzZDkxLTQwMjUtNDY2Yi05ZTBlLTZjNzU4NDZkMzU2Yz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -650,7 +650,7 @@ "no-cache" ], "x-ms-request-id": [ - "455835b0-c507-45b1-a634-cc470f00259d" + "3b3d94bb-828f-46a5-9ba2-99a716a6aeb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,23 +663,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" + "31941" ], "x-ms-correlation-request-id": [ - "64eec9dc-451c-4071-9307-267477f04b1b" + "3d9b8862-2344-49e1-8661-3824682e92d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030859Z:64eec9dc-451c-4071-9307-267477f04b1b" + "CENTRALUS:20150430T024623Z:3d9b8862-2344-49e1-8661-3824682e92d6" ], "Date": [ - "Sun, 26 Apr 2015 03:08:59 GMT" + "Thu, 30 Apr 2015 02:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazMyMTMvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrODkxMi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -705,13 +705,13 @@ "gateway" ], "x-ms-request-id": [ - "fef64461-321d-4673-ae86-1cab2ebab19d" + "329ae058-7d68-482d-8dab-4582a93ca7fc" ], "x-ms-correlation-request-id": [ - "fef64461-321d-4673-ae86-1cab2ebab19d" + "329ae058-7d68-482d-8dab-4582a93ca7fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030859Z:fef64461-321d-4673-ae86-1cab2ebab19d" + "CENTRALUS:20150430T024625Z:329ae058-7d68-482d-8dab-4582a93ca7fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,14 +720,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:59 GMT" + "Thu, 30 Apr 2015 02:46:25 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazMyMTMvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrODkxMi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -735,10 +735,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3213\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213\",\r\n \"etag\": \"W/\\\"2d450797-7908-4008-a868-77478d047a3c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk8068\",\r\n \"fqdn\": \"onesdk8068.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8912\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912\",\r\n \"etag\": \"W/\\\"a8de6d79-35fa-4bb6-87cd-88e7ba78f0f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk882\",\r\n \"fqdn\": \"onesdk882.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "510" + "507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -750,7 +750,7 @@ "no-cache" ], "x-ms-request-id": [ - "6369c4f0-e17d-4f80-a961-56090f4ac6bf" + "a0f569d8-7067-4776-913d-ac0557613351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,47 +759,47 @@ "no-cache" ], "ETag": [ - "W/\"2d450797-7908-4008-a868-77478d047a3c\"" + "W/\"a8de6d79-35fa-4bb6-87cd-88e7ba78f0f3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" + "31936" ], "x-ms-correlation-request-id": [ - "5bd2ce18-d340-4c75-b448-2998d79b16ed" + "137c76c8-d905-4ab7-a2c1-025998b75ee0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030900Z:5bd2ce18-d340-4c75-b448-2998d79b16ed" + "CENTRALUS:20150430T024627Z:137c76c8-d905-4ab7-a2c1-025998b75ee0" ], "Date": [ - "Sun, 26 Apr 2015 03:09:00 GMT" + "Thu, 30 Apr 2015 02:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL29uZXNkazMyMTMvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrODkxMi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk8068\"\r\n }\r\n },\r\n \"name\": \"onesdk3213\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk882\"\r\n }\r\n },\r\n \"name\": \"onesdk8912\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "241" + "240" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk3213\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213\",\r\n \"etag\": \"W/\\\"8c4a9cd8-691e-4f30-9311-fbd12e2449ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk8068\",\r\n \"fqdn\": \"onesdk8068.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8912\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912\",\r\n \"etag\": \"W/\\\"76a0b0a6-81f0-4b30-af9a-a0698951691a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk882\",\r\n \"fqdn\": \"onesdk882.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "509" + "506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -814,10 +814,10 @@ "10" ], "x-ms-request-id": [ - "c1ad9266-8fff-46dc-834b-267f92f6e342" + "aeb02742-6d03-4842-afc9-49d8a6d7068c" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c1ad9266-8fff-46dc-834b-267f92f6e342?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/aeb02742-6d03-4842-afc9-49d8a6d7068c?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -830,23 +830,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1192" ], "x-ms-correlation-request-id": [ - "edbe0458-ea90-44fa-8c77-e6a38b1b0937" + "1c0fef13-e5f3-466c-86cb-2eb29c5ea296" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030900Z:edbe0458-ea90-44fa-8c77-e6a38b1b0937" + "CENTRALUS:20150430T024627Z:1c0fef13-e5f3-466c-86cb-2eb29c5ea296" ], "Date": [ - "Sun, 26 Apr 2015 03:09:00 GMT" + "Thu, 30 Apr 2015 02:46:26 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c1ad9266-8fff-46dc-834b-267f92f6e342?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2MxYWQ5MjY2LThmZmYtNDZkYy04MzRiLTI2N2Y5MmY2ZTM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/aeb02742-6d03-4842-afc9-49d8a6d7068c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2FlYjAyNzQyLTZkMDMtNDg0Mi1hZmM5LTQ5ZDhhNmQ3MDY4Yz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -872,7 +872,7 @@ "no-cache" ], "x-ms-request-id": [ - "e4036e33-eb52-45e1-9c8e-da13f058ca39" + "ab4d8087-1fed-4105-9089-7e7c724e8aa1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,23 +885,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "31937" ], "x-ms-correlation-request-id": [ - "14b370ce-208f-4499-9380-edf4b3c12928" + "a4286fbf-1da9-4c5d-a2cc-b84bba1eb5e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030900Z:14b370ce-208f-4499-9380-edf4b3c12928" + "CENTRALUS:20150430T024627Z:a4286fbf-1da9-4c5d-a2cc-b84bba1eb5e4" ], "Date": [ - "Sun, 26 Apr 2015 03:09:00 GMT" + "Thu, 30 Apr 2015 02:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/virtualNetworkGateways/onesdk5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNTYwMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsxMTMwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -927,13 +927,13 @@ "gateway" ], "x-ms-request-id": [ - "4deea108-2e69-422b-9809-c32b945cc61a" + "20edc32b-d89c-4126-8faa-5909e09c462b" ], "x-ms-correlation-request-id": [ - "4deea108-2e69-422b-9809-c32b945cc61a" + "20edc32b-d89c-4126-8faa-5909e09c462b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030900Z:4deea108-2e69-422b-9809-c32b945cc61a" + "CENTRALUS:20150430T024627Z:20edc32b-d89c-4126-8faa-5909e09c462b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -942,14 +942,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:09:00 GMT" + "Thu, 30 Apr 2015 02:46:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/virtualNetworkGateways/onesdk5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNTYwMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsxMTMwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -957,10 +957,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5600\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworkGateways/onesdk5600\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3172\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworkGateways/onesdk5600/ipConfigurations/onesdk3172\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1130\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk9821\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130/ipConfigurations/onesdk9821\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1299" + "1295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -972,7 +972,7 @@ "no-cache" ], "x-ms-request-id": [ - "23224b8e-a007-450c-a452-22439784c970" + "8dd5e270-1ea1-4e85-8f7b-aafa1cd2cabf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -985,23 +985,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" + "31932" ], "x-ms-correlation-request-id": [ - "ff3a144f-27a3-4e77-b62b-e237c3998b6c" + "315a1b16-0561-4559-a2b6-8d1005e82758" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030912Z:ff3a144f-27a3-4e77-b62b-e237c3998b6c" + "CENTRALUS:20150430T024644Z:315a1b16-0561-4559-a2b6-8d1005e82758" ], "Date": [ - "Sun, 26 Apr 2015 03:09:12 GMT" + "Thu, 30 Apr 2015 02:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/virtualNetworkGateways/onesdk5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNTYwMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsxMTMwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1009,10 +1009,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5600\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworkGateways/onesdk5600\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3172\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworkGateways/onesdk5600/ipConfigurations/onesdk3172\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1130\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk9821\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130/ipConfigurations/onesdk9821\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1299" + "1295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1024,7 +1024,7 @@ "no-cache" ], "x-ms-request-id": [ - "a9adadd5-3d8c-4338-bddf-392647c5d263" + "aaa074ea-bc16-440f-ab52-224f25f726f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1037,40 +1037,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" + "31931" ], "x-ms-correlation-request-id": [ - "11046093-7b8d-44e3-b596-7e992b6de7cc" + "2c4a763d-4372-47c9-ab95-3cdc7ef28db6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030912Z:11046093-7b8d-44e3-b596-7e992b6de7cc" + "CENTRALUS:20150430T024644Z:2c4a763d-4372-47c9-ab95-3cdc7ef28db6" ], "Date": [ - "Sun, 26 Apr 2015 03:09:12 GMT" + "Thu, 30 Apr 2015 02:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/virtualnetworkgateways/onesdk5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMvb25lc2RrNTYwMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualnetworkgateways/onesdk1130?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtnYXRld2F5cy9vbmVzZGsxMTMwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213\"\r\n }\r\n },\r\n \"name\": \"onesdk3172\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfigurations/onesdk3172\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false\r\n },\r\n \"name\": \"onesdk5600\",\r\n \"type\": \"microsoft.network/virtualnetworkgateways\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912\"\r\n }\r\n },\r\n \"name\": \"onesdk9821\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfigurations/onesdk9821\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false\r\n },\r\n \"name\": \"onesdk1130\",\r\n \"type\": \"microsoft.network/virtualnetworkgateways\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1049" + "1047" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5600\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworkGateways/onesdk5600\",\r\n \"etag\": \"W/\\\"4a942332-bbe2-46a4-9403-33466f89540e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"12135d2f-7bd4-4e31-98f1-7f0d1b1ba104\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk3172\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworkGateways/onesdk5600/ipConfigurations/onesdk3172\",\r\n \"etag\": \"W/\\\"4a942332-bbe2-46a4-9403-33466f89540e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk1130\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130\",\r\n \"etag\": \"W/\\\"7a2f3dec-24fb-46b5-8467-bb6d425febca\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"4ee668ce-7ecd-41c5-b170-d55a5931ec80\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk9821\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130/ipConfigurations/onesdk9821\",\r\n \"etag\": \"W/\\\"7a2f3dec-24fb-46b5-8467-bb6d425febca\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1387" + "1383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1085,10 +1085,10 @@ "10" ], "x-ms-request-id": [ - "9be4dffa-a83a-48b7-87ad-efe9d9a58d68" + "f3f48ece-47a4-4d0e-9a42-a2d3e37a0382" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/9be4dffa-a83a-48b7-87ad-efe9d9a58d68?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/f3f48ece-47a4-4d0e-9a42-a2d3e37a0382?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,23 +1101,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1191" ], "x-ms-correlation-request-id": [ - "ff2b047d-6497-44b2-bdf8-6fed53270d83" + "9301506d-3fdd-4916-a5e1-4181322a3595" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030901Z:ff2b047d-6497-44b2-bdf8-6fed53270d83" + "CENTRALUS:20150430T024628Z:9301506d-3fdd-4916-a5e1-4181322a3595" ], "Date": [ - "Sun, 26 Apr 2015 03:09:01 GMT" + "Thu, 30 Apr 2015 02:46:27 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/9be4dffa-a83a-48b7-87ad-efe9d9a58d68?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzliZTRkZmZhLWE4M2EtNDhiNy04N2FkLWVmZTlkOWE1OGQ2OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/f3f48ece-47a4-4d0e-9a42-a2d3e37a0382?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2YzZjQ4ZWNlLTQ3YTQtNGQwZS05YTQyLWEyZDNlMzdhMDM4Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1143,7 +1143,7 @@ "no-cache" ], "x-ms-request-id": [ - "f6ab498a-bced-4d7b-a3a5-4c4051b386e3" + "f90b643c-4e46-43a1-9291-549194ea5ef4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1156,23 +1156,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" + "31934" ], "x-ms-correlation-request-id": [ - "13924f2d-a773-49c2-91db-c4c6c48d3c17" + "257f2f6a-9fe4-432a-8e04-2f8d8b2ba494" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030902Z:13924f2d-a773-49c2-91db-c4c6c48d3c17" + "CENTRALUS:20150430T024628Z:257f2f6a-9fe4-432a-8e04-2f8d8b2ba494" ], "Date": [ - "Sun, 26 Apr 2015 03:09:01 GMT" + "Thu, 30 Apr 2015 02:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/9be4dffa-a83a-48b7-87ad-efe9d9a58d68?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzliZTRkZmZhLWE4M2EtNDhiNy04N2FkLWVmZTlkOWE1OGQ2OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/f3f48ece-47a4-4d0e-9a42-a2d3e37a0382?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2YzZjQ4ZWNlLTQ3YTQtNGQwZS05YTQyLWEyZDNlMzdhMDM4Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1198,7 +1198,7 @@ "no-cache" ], "x-ms-request-id": [ - "f6c42b47-bc1c-42f1-86e7-db3890ca6967" + "d49289cf-05db-41a1-8bf5-d715e103de12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1211,23 +1211,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" + "31933" ], "x-ms-correlation-request-id": [ - "4f0d29e5-7b3f-47bc-a1cd-e1358ba4ae06" + "415c0141-9c77-4a58-b55a-a9681b27217b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030912Z:4f0d29e5-7b3f-47bc-a1cd-e1358ba4ae06" + "CENTRALUS:20150430T024644Z:415c0141-9c77-4a58-b55a-a9681b27217b" ], "Date": [ - "Sun, 26 Apr 2015 03:09:12 GMT" + "Thu, 30 Apr 2015 02:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/virtualNetworkGateways/onesdk4259?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNDI1OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/localNetworkGateways/onesdk6468?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjQ2OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1253,13 +1253,13 @@ "gateway" ], "x-ms-request-id": [ - "3d60ca55-a229-4b41-8211-b8fa01096658" + "12bbbaff-b5f1-42fc-b087-6e0a15837781" ], "x-ms-correlation-request-id": [ - "3d60ca55-a229-4b41-8211-b8fa01096658" + "12bbbaff-b5f1-42fc-b087-6e0a15837781" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030912Z:3d60ca55-a229-4b41-8211-b8fa01096658" + "CENTRALUS:20150430T024644Z:12bbbaff-b5f1-42fc-b087-6e0a15837781" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1268,28 +1268,22 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:09:12 GMT" + "Thu, 30 Apr 2015 02:46:44 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/localNetworkGateways/onesdk4259?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazQyNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"gatewayIpAddress\": \"192.168.3.11\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"name\": \"onesdk4259\",\r\n \"type\": \"microsoft.network/localNetworkGateways\",\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/localNetworkGateways/onesdk6468?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjQ2OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "282" - ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4259\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/localNetworkGateways/onesdk4259\",\r\n \"etag\": \"W/\\\"7a077f3f-93db-43c1-a927-6a846adc10ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"993f83ec-69f5-4535-b889-3718688bea36\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6468\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/localNetworkGateways/onesdk6468\",\r\n \"etag\": \"W/\\\"b5d5cc78-3dd6-4c92-bd15-54e946ec49a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"334eb693-023f-4180-a4e1-d09355a72d8e\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "530" @@ -1303,14 +1297,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "f753e92b-6e4c-4e1b-9935-ebf0a9ffc6a7" - ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/f753e92b-6e4c-4e1b-9935-ebf0a9ffc6a7?api-version=2015-05-01-preview" + "5d1f5c23-5d34-4dbb-bb5d-0d4b3d47814e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1322,38 +1310,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31928" ], "x-ms-correlation-request-id": [ - "8045cb89-a7a5-48aa-b4bd-681b7e09fc80" + "8ec9e41b-8413-408e-bc3c-92c10f868839" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030913Z:8045cb89-a7a5-48aa-b4bd-681b7e09fc80" + "CENTRALUS:20150430T024646Z:8ec9e41b-8413-408e-bc3c-92c10f868839" ], "Date": [ - "Sun, 26 Apr 2015 03:09:13 GMT" + "Thu, 30 Apr 2015 02:46:45 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/f753e92b-6e4c-4e1b-9935-ebf0a9ffc6a7?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2Y3NTNlOTJiLTZlNGMtNGUxYi05OTM1LWViZjBhOWZmYzZhNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/localNetworkGateways/onesdk6468?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjQ2OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6468\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/localNetworkGateways/onesdk6468\",\r\n \"etag\": \"W/\\\"b5d5cc78-3dd6-4c92-bd15-54e946ec49a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"334eb693-023f-4180-a4e1-d09355a72d8e\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1365,7 +1350,7 @@ "no-cache" ], "x-ms-request-id": [ - "774d2250-ff1f-443a-9a0b-f2801c7bb3da" + "5195f819-cbef-4bb5-b8e2-25a5be8a76df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1378,34 +1363,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "31927" ], "x-ms-correlation-request-id": [ - "62d388aa-05d9-41d4-9824-e21dffd29528" + "9803cb81-54bf-4093-ac9f-e874be06b564" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030913Z:62d388aa-05d9-41d4-9824-e21dffd29528" + "CENTRALUS:20150430T024646Z:9803cb81-54bf-4093-ac9f-e874be06b564" ], "Date": [ - "Sun, 26 Apr 2015 03:09:13 GMT" + "Thu, 30 Apr 2015 02:46:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/localNetworkGateways/onesdk4259?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazQyNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/localNetworkGateways/onesdk6468?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvb25lc2RrNjQ2OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"gatewayIpAddress\": \"192.168.3.11\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"name\": \"onesdk6468\",\r\n \"type\": \"microsoft.network/localNetworkGateways\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "282" + ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4259\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/localNetworkGateways/onesdk4259\",\r\n \"etag\": \"W/\\\"57863b4d-d18e-49d0-9203-e79199814f3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"993f83ec-69f5-4535-b889-3718688bea36\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6468\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/localNetworkGateways/onesdk6468\",\r\n \"etag\": \"W/\\\"d3c2cd12-4f4d-4b62-9031-d7ddd4203f01\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"334eb693-023f-4180-a4e1-d09355a72d8e\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "531" + "529" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1416,8 +1407,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "2c433711-e29f-43c3-96b4-2129f91ded35" + "41b08368-c98a-42bf-b7b5-8ec676b8e019" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/41b08368-c98a-42bf-b7b5-8ec676b8e019?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1429,35 +1426,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" ], "x-ms-correlation-request-id": [ - "090b3f6c-4d2f-401b-9ffa-b69f9f447918" + "e8f392e1-76c8-4226-9e3a-8977cc2a66d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030913Z:090b3f6c-4d2f-401b-9ffa-b69f9f447918" + "CENTRALUS:20150430T024645Z:e8f392e1-76c8-4226-9e3a-8977cc2a66d0" ], "Date": [ - "Sun, 26 Apr 2015 03:09:13 GMT" + "Thu, 30 Apr 2015 02:46:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/localNetworkGateways/onesdk4259?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2xvY2FsTmV0d29ya0dhdGV3YXlzL29uZXNkazQyNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/41b08368-c98a-42bf-b7b5-8ec676b8e019?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzQxYjA4MzY4LWM5OGEtNDJiZi1iN2I1LThlYzY3NmI4ZTAxOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4259\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/localNetworkGateways/onesdk4259\",\r\n \"etag\": \"W/\\\"57863b4d-d18e-49d0-9203-e79199814f3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"993f83ec-69f5-4535-b889-3718688bea36\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.11\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "531" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1469,7 +1469,7 @@ "no-cache" ], "x-ms-request-id": [ - "5dca0df0-8d37-4a1e-8d4b-43ed35aff69b" + "1e5b1d06-6b8f-45c6-98a1-641f97e76a15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,23 +1482,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31936" + "31929" ], "x-ms-correlation-request-id": [ - "12b64791-c5c7-493d-83e0-ee1a0ea47e1e" + "9c442857-31a2-4ed7-8991-e510b78dc74c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030913Z:12b64791-c5c7-493d-83e0-ee1a0ea47e1e" + "CENTRALUS:20150430T024646Z:9c442857-31a2-4ed7-8991-e510b78dc74c" ], "Date": [ - "Sun, 26 Apr 2015 03:09:13 GMT" + "Thu, 30 Apr 2015 02:46:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/connections/onesdk6483?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazY0ODM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrNzM2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1524,13 +1524,13 @@ "gateway" ], "x-ms-request-id": [ - "3be474d2-ae0d-4071-abb1-6cebbcc7f1bc" + "a03c2797-4930-4761-a735-69a680f13110" ], "x-ms-correlation-request-id": [ - "3be474d2-ae0d-4071-abb1-6cebbcc7f1bc" + "a03c2797-4930-4761-a735-69a680f13110" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030914Z:3be474d2-ae0d-4071-abb1-6cebbcc7f1bc" + "CENTRALUS:20150430T024646Z:a03c2797-4930-4761-a735-69a680f13110" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1539,14 +1539,14 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:09:13 GMT" + "Thu, 30 Apr 2015 02:46:46 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/connections/onesdk6483?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazY0ODM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrNzM2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1554,10 +1554,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6483\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/connections/onesdk6483\",\r\n \"etag\": \"W/\\\"c8ed4333-d99a-4350-be59-3b3a3dcacf73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"d54afa8c-0438-4f42-a240-e95b662a44a1\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk5600\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk5600\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk4259\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk4259\",\r\n \"etag\": \"W/\\\"57863b4d-d18e-49d0-9203-e79199814f3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7361\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361\",\r\n \"etag\": \"W/\\\"827e082f-4bd1-4f38-8104-b5c044a6d24a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"368d7afe-fbc8-4989-96c5-7341f0e4198e\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk1130\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk1130\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk6468\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk6468\",\r\n \"etag\": \"W/\\\"b5d5cc78-3dd6-4c92-bd15-54e946ec49a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1386" + "1385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1569,7 +1569,7 @@ "no-cache" ], "x-ms-request-id": [ - "b9b3f491-138d-4148-89a7-de65b39ffff3" + "96c49929-63f3-4b0f-8f70-05bf033ef79e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1582,23 +1582,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "31924" ], "x-ms-correlation-request-id": [ - "fa3d2858-64bf-4203-bc25-771341ad325e" + "4d09f90e-310a-48c6-8da2-75332134d2cc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030915Z:fa3d2858-64bf-4203-bc25-771341ad325e" + "CENTRALUS:20150430T024648Z:4d09f90e-310a-48c6-8da2-75332134d2cc" ], "Date": [ - "Sun, 26 Apr 2015 03:09:14 GMT" + "Thu, 30 Apr 2015 02:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/connections/onesdk6483?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazY0ODM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrNzM2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1606,10 +1606,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6483\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/connections/onesdk6483\",\r\n \"etag\": \"W/\\\"c8ed4333-d99a-4350-be59-3b3a3dcacf73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"d54afa8c-0438-4f42-a240-e95b662a44a1\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk5600\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk5600\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk4259\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk4259\",\r\n \"etag\": \"W/\\\"57863b4d-d18e-49d0-9203-e79199814f3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7361\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361\",\r\n \"etag\": \"W/\\\"827e082f-4bd1-4f38-8104-b5c044a6d24a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"368d7afe-fbc8-4989-96c5-7341f0e4198e\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk1130\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk1130\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk6468\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk6468\",\r\n \"etag\": \"W/\\\"b5d5cc78-3dd6-4c92-bd15-54e946ec49a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1386" + "1385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1621,7 +1621,7 @@ "no-cache" ], "x-ms-request-id": [ - "ee1eeafa-b945-4f5b-9d93-40930860a935" + "c8be1aff-27cf-4291-8d5a-ccb5e430a270" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1634,40 +1634,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "31923" ], "x-ms-correlation-request-id": [ - "be97bc8b-5d55-4407-937f-7775b59dd767" + "78dc47ac-300d-495b-ab26-4c83b19a9148" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030915Z:be97bc8b-5d55-4407-937f-7775b59dd767" + "CENTRALUS:20150430T024648Z:78dc47ac-300d-495b-ab26-4c83b19a9148" ], "Date": [ - "Sun, 26 Apr 2015 03:09:14 GMT" + "Thu, 30 Apr 2015 02:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/connections/onesdk6483?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazY0ODM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrNzM2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworks/onesdk5554/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/publicIPAddresses/onesdk3213\"\r\n },\r\n \"name\": \"onesdk3172\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworkGateways/onesdk5600/ipConfigurations/onesdk3172\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/virtualNetworkGateways/onesdk5600\",\r\n \"name\": \"onesdk5600\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"gatewayIpAddress\": \"192.168.3.11\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"etag\": \"W/\\\"57863b4d-d18e-49d0-9203-e79199814f3a\\\"\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/localNetworkGateways/onesdk4259\",\r\n \"name\": \"onesdk4259\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"name\": \"onesdk6483\",\r\n \"type\": \"microsoft.network/connections\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworks/onesdk5569/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/publicIPAddresses/onesdk8912\"\r\n },\r\n \"name\": \"onesdk9821\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130/ipConfigurations/onesdk9821\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/virtualNetworkGateways/onesdk1130\",\r\n \"name\": \"onesdk1130\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"localNetworkGateway2\": {\r\n \"gatewayIpAddress\": \"192.168.3.11\",\r\n \"localNetworkSiteAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"etag\": \"W/\\\"b5d5cc78-3dd6-4c92-bd15-54e946ec49a7\\\"\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/localNetworkGateways/onesdk6468\",\r\n \"name\": \"onesdk6468\",\r\n \"type\": \"Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"name\": \"onesdk7361\",\r\n \"type\": \"microsoft.network/connections\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "2063" + "2058" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk6483\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/Microsoft.Network/connections/onesdk6483\",\r\n \"etag\": \"W/\\\"c9c1e715-3d6d-40fa-9ba3-6c00bf9d08d1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"d54afa8c-0438-4f42-a240-e95b662a44a1\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk5600\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk5600\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk4259\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk4259\",\r\n \"etag\": \"W/\\\"57863b4d-d18e-49d0-9203-e79199814f3a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7361\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361\",\r\n \"etag\": \"W/\\\"86942c47-f833-45cd-a29e-009a1dd66501\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"368d7afe-fbc8-4989-96c5-7341f0e4198e\",\r\n \"virtualNetworkGateway1\": {\r\n \"name\": \"onesdk1130\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworkGateways/onesdk1130\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"StaticRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"name\": \"onesdk6468\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/localNetworkGateways/onesdk6468\",\r\n \"etag\": \"W/\\\"b5d5cc78-3dd6-4c92-bd15-54e946ec49a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"localNetworkSiteAddressSpace\": {}\r\n },\r\n \"location\": \"West US\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1385" + "1384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,10 +1682,10 @@ "10" ], "x-ms-request-id": [ - "771190c2-9700-4208-b531-b8defe6c923e" + "e524ca18-4d1b-4289-99ea-d1196bc6d1b9" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/771190c2-9700-4208-b531-b8defe6c923e?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/e524ca18-4d1b-4289-99ea-d1196bc6d1b9?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1698,23 +1698,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1189" ], "x-ms-correlation-request-id": [ - "ce5547d1-ed04-4efe-b024-fe91f0198049" + "9afe4325-6dd7-4d37-8c39-22fc9e78da86" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030914Z:ce5547d1-ed04-4efe-b024-fe91f0198049" + "CENTRALUS:20150430T024647Z:9afe4325-6dd7-4d37-8c39-22fc9e78da86" ], "Date": [ - "Sun, 26 Apr 2015 03:09:14 GMT" + "Thu, 30 Apr 2015 02:46:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/771190c2-9700-4208-b531-b8defe6c923e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzc3MTE5MGMyLTk3MDAtNDIwOC1iNTMxLWI4ZGVmZTZjOTIzZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/e524ca18-4d1b-4289-99ea-d1196bc6d1b9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2U1MjRjYTE4LTRkMWItNDI4OS05OWVhLWQxMTk2YmM2ZDFiOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1740,7 +1740,7 @@ "no-cache" ], "x-ms-request-id": [ - "8db83231-e453-411f-8f9f-4bdbe8de8b70" + "3c63c694-d27d-44cd-b0fa-a7e7b00a4333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1753,23 +1753,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "31925" ], "x-ms-correlation-request-id": [ - "4aae6bfa-9dfa-40c8-b742-fb01cf0ea1c1" + "a5cb67c0-a788-4559-830b-3125c8db204e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030915Z:4aae6bfa-9dfa-40c8-b742-fb01cf0ea1c1" + "CENTRALUS:20150430T024648Z:a5cb67c0-a788-4559-830b-3125c8db204e" ], "Date": [ - "Sun, 26 Apr 2015 03:09:14 GMT" + "Thu, 30 Apr 2015 02:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/connections/onesdk6483/sharedkey?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazY0ODMvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361/sharedkey?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrNzM2MS9zaGFyZWRrZXk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1792,7 +1792,7 @@ "no-cache" ], "x-ms-request-id": [ - "72a789ec-33f2-4dde-83c5-b65a15ae5eff" + "e9b5f7d8-2b80-4b4e-a7f0-6405c951f9e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1805,23 +1805,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" + "31922" ], "x-ms-correlation-request-id": [ - "aef11ad5-f17f-400a-8efc-6ae984736caf" + "f9d22749-6ed8-4382-a551-208ce85aed28" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030915Z:aef11ad5-f17f-400a-8efc-6ae984736caf" + "CENTRALUS:20150430T024648Z:f9d22749-6ed8-4382-a551-208ce85aed28" ], "Date": [ - "Sun, 26 Apr 2015 03:09:14 GMT" + "Thu, 30 Apr 2015 02:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/connections/onesdk6483/sharedkey?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazY0ODMvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361/sharedkey?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrNzM2MS9zaGFyZWRrZXk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1844,7 +1844,7 @@ "no-cache" ], "x-ms-request-id": [ - "64ec05eb-1278-4df9-82c6-ccfcf363a5bd" + "875a419a-5d47-49a1-974c-0bf76811faad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1857,23 +1857,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "31920" ], "x-ms-correlation-request-id": [ - "d1b677c3-3fc1-40ed-915e-7f79fce9d4d7" + "72b8b43d-b7a4-4132-9376-1121da8fc094" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030916Z:d1b677c3-3fc1-40ed-915e-7f79fce9d4d7" + "CENTRALUS:20150430T024650Z:72b8b43d-b7a4-4132-9376-1121da8fc094" ], "Date": [ - "Sun, 26 Apr 2015 03:09:15 GMT" + "Thu, 30 Apr 2015 02:46:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/connections/onesdk6483/sharedkey?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazY0ODMvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361/sharedkey?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrNzM2MS9zaGFyZWRrZXk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1896,7 +1896,7 @@ "no-cache" ], "x-ms-request-id": [ - "f52274a4-6e08-4bc9-a306-2cd22ead1e42" + "56275108-5cf3-4578-b66f-b8686849cb2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1909,23 +1909,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" + "31919" ], "x-ms-correlation-request-id": [ - "86a8ec8e-f385-4a8d-959c-71353d39c31b" + "a3ed33bb-7447-4ac7-a30a-faf063879814" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030916Z:86a8ec8e-f385-4a8d-959c-71353d39c31b" + "CENTRALUS:20150430T024650Z:a3ed33bb-7447-4ac7-a30a-faf063879814" ], "Date": [ - "Sun, 26 Apr 2015 03:09:15 GMT" + "Thu, 30 Apr 2015 02:46:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/connections/onesdk6483/sharedkey?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazY0ODMvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361/sharedkey?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrNzM2MS9zaGFyZWRrZXk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1948,7 +1948,7 @@ "no-cache" ], "x-ms-request-id": [ - "70baf9ec-66d4-4b42-9367-5cd172553873" + "990fed98-fe93-4053-bd39-c6827f5db342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1961,23 +1961,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31927" + "31918" ], "x-ms-correlation-request-id": [ - "77d3f51a-c636-4eb2-8c23-642c16fcc384" + "51056b94-09dc-4d22-8cde-f2c2bb7486fe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030916Z:77d3f51a-c636-4eb2-8c23-642c16fcc384" + "CENTRALUS:20150430T024650Z:51056b94-09dc-4d22-8cde-f2c2bb7486fe" ], "Date": [ - "Sun, 26 Apr 2015 03:09:15 GMT" + "Thu, 30 Apr 2015 02:46:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk4111/providers/microsoft.network/connections/onesdk6483/sharedkey?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQxMTEvcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2Nvbm5lY3Rpb25zL29uZXNkazY0ODMvc2hhcmVka2V5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk451/providers/Microsoft.Network/connections/onesdk7361/sharedkey?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvb25lc2RrNzM2MS9zaGFyZWRrZXk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"TestSharedKeyValue\"\r\n }\r\n}", "RequestHeaders": { @@ -2006,10 +2006,10 @@ "10" ], "x-ms-request-id": [ - "2b3ed6f9-1be7-456c-a07f-d6fa5082e178" + "434e9fe7-f31c-4fe7-8519-96061bf5d7b1" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/2b3ed6f9-1be7-456c-a07f-d6fa5082e178?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/434e9fe7-f31c-4fe7-8519-96061bf5d7b1?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2022,23 +2022,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1188" ], "x-ms-correlation-request-id": [ - "f555ee1a-e775-4262-b4d4-c9a3c83b56fa" + "5daa4879-7cac-49ec-91e3-44055ac7cd09" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030915Z:f555ee1a-e775-4262-b4d4-c9a3c83b56fa" + "CENTRALUS:20150430T024649Z:5daa4879-7cac-49ec-91e3-44055ac7cd09" ], "Date": [ - "Sun, 26 Apr 2015 03:09:14 GMT" + "Thu, 30 Apr 2015 02:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/2b3ed6f9-1be7-456c-a07f-d6fa5082e178?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzJiM2VkNmY5LTFiZTctNDU2Yy1hMDdmLWQ2ZmE1MDgyZTE3OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/434e9fe7-f31c-4fe7-8519-96061bf5d7b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzQzNGU5ZmU3LWYzMWMtNGZlNy04NTE5LTk2MDYxYmY1ZDdiMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2064,7 +2064,7 @@ "no-cache" ], "x-ms-request-id": [ - "aac50975-73ef-4f8e-8aa6-4281f41271fe" + "54e7d2cb-4e98-4844-a4de-18edb863ee9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2077,23 +2077,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "31921" ], "x-ms-correlation-request-id": [ - "d2af42e4-36c2-44f3-a8d9-ff3e7f034ce1" + "d66875a0-0a25-4a2a-bf64-99b16dffaa94" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030915Z:d2af42e4-36c2-44f3-a8d9-ff3e7f034ce1" + "CENTRALUS:20150430T024649Z:d66875a0-0a25-4a2a-bf64-99b16dffaa94" ], "Date": [ - "Sun, 26 Apr 2015 03:09:15 GMT" + "Thu, 30 Apr 2015 02:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk4111?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQxMTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk451?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2116,16 +2116,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1183" ], "x-ms-request-id": [ - "addca07c-0e84-4d11-ab4f-aa4771318469" + "de75d1e7-3638-4e63-9080-3eb547553fe2" ], "x-ms-correlation-request-id": [ - "addca07c-0e84-4d11-ab4f-aa4771318469" + "de75d1e7-3638-4e63-9080-3eb547553fe2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030842Z:addca07c-0e84-4d11-ab4f-aa4771318469" + "CENTRALUS:20150430T024653Z:de75d1e7-3638-4e63-9080-3eb547553fe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2134,17 +2134,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:42 GMT" + "Thu, 30 Apr 2015 02:46:53 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNVEV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2173,13 +2173,13 @@ "31940" ], "x-ms-request-id": [ - "9e947a18-88cd-421a-8766-c8d0109d7edf" + "27e83e99-5fbb-454b-95ad-32e3fc0412c7" ], "x-ms-correlation-request-id": [ - "9e947a18-88cd-421a-8766-c8d0109d7edf" + "27e83e99-5fbb-454b-95ad-32e3fc0412c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030842Z:9e947a18-88cd-421a-8766-c8d0109d7edf" + "CENTRALUS:20150430T024653Z:27e83e99-5fbb-454b-95ad-32e3fc0412c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2188,17 +2188,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:42 GMT" + "Thu, 30 Apr 2015 02:46:53 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNVEV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2227,13 +2227,13 @@ "31939" ], "x-ms-request-id": [ - "474c74b4-32a1-43c8-a7a4-3eb482d9f1d1" + "2907553b-1c9c-4398-9b8d-0e279735fec3" ], "x-ms-correlation-request-id": [ - "474c74b4-32a1-43c8-a7a4-3eb482d9f1d1" + "2907553b-1c9c-4398-9b8d-0e279735fec3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030857Z:474c74b4-32a1-43c8-a7a4-3eb482d9f1d1" + "CENTRALUS:20150430T024708Z:2907553b-1c9c-4398-9b8d-0e279735fec3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2242,17 +2242,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:08:57 GMT" + "Thu, 30 Apr 2015 02:47:08 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNVEV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2281,13 +2281,13 @@ "31938" ], "x-ms-request-id": [ - "8d9af71b-f479-4c34-addf-d5e75d3cd38e" + "bc27d845-4139-4022-8021-3b807864cf81" ], "x-ms-correlation-request-id": [ - "8d9af71b-f479-4c34-addf-d5e75d3cd38e" + "bc27d845-4139-4022-8021-3b807864cf81" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030912Z:8d9af71b-f479-4c34-addf-d5e75d3cd38e" + "CENTRALUS:20150430T024724Z:bc27d845-4139-4022-8021-3b807864cf81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2296,17 +2296,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:09:12 GMT" + "Thu, 30 Apr 2015 02:47:23 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNVEV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2335,13 +2335,13 @@ "31937" ], "x-ms-request-id": [ - "49424b02-e8f4-4cd4-b747-3bf9b76e0975" + "7e3ffd87-eb3d-46e1-af14-7d3cdc5764be" ], "x-ms-correlation-request-id": [ - "49424b02-e8f4-4cd4-b747-3bf9b76e0975" + "7e3ffd87-eb3d-46e1-af14-7d3cdc5764be" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030928Z:49424b02-e8f4-4cd4-b747-3bf9b76e0975" + "CENTRALUS:20150430T024739Z:7e3ffd87-eb3d-46e1-af14-7d3cdc5764be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2350,17 +2350,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:09:27 GMT" + "Thu, 30 Apr 2015 02:47:39 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNVEV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2389,13 +2389,13 @@ "31936" ], "x-ms-request-id": [ - "6cd4ce45-7312-4d19-adcd-88ce159cbd27" + "5d509ed8-da3a-4e33-8232-87b036065259" ], "x-ms-correlation-request-id": [ - "6cd4ce45-7312-4d19-adcd-88ce159cbd27" + "5d509ed8-da3a-4e33-8232-87b036065259" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030943Z:6cd4ce45-7312-4d19-adcd-88ce159cbd27" + "CENTRALUS:20150430T024754Z:5d509ed8-da3a-4e33-8232-87b036065259" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2404,17 +2404,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:09:42 GMT" + "Thu, 30 Apr 2015 02:47:54 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNVEV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2443,13 +2443,13 @@ "31935" ], "x-ms-request-id": [ - "69cea899-c1e3-44da-a2b4-615b4e4eea19" + "c299e988-2497-4e97-a778-e915d1ba52cf" ], "x-ms-correlation-request-id": [ - "69cea899-c1e3-44da-a2b4-615b4e4eea19" + "c299e988-2497-4e97-a778-e915d1ba52cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T030958Z:69cea899-c1e3-44da-a2b4-615b4e4eea19" + "CENTRALUS:20150430T024809Z:c299e988-2497-4e97-a778-e915d1ba52cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2458,17 +2458,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:09:57 GMT" + "Thu, 30 Apr 2015 02:48:09 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNVEV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2497,13 +2497,13 @@ "31934" ], "x-ms-request-id": [ - "cdc58bbf-237c-4dce-8fa4-a7fbe6c3b4fd" + "69f34142-7196-4a40-a484-a4a9c97cafef" ], "x-ms-correlation-request-id": [ - "cdc58bbf-237c-4dce-8fa4-a7fbe6c3b4fd" + "69f34142-7196-4a40-a484-a4a9c97cafef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T031013Z:cdc58bbf-237c-4dce-8fa4-a7fbe6c3b4fd" + "CENTRALUS:20150430T024831Z:69f34142-7196-4a40-a484-a4a9c97cafef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2512,17 +2512,17 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:10:13 GMT" + "Thu, 30 Apr 2015 02:48:31 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MTExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNVEV4TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2544,17 +2544,233 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "31933" ], "x-ms-request-id": [ - "8e574d08-c76e-4fd6-8038-ad116bc1adef" + "2d9e5a29-509b-4ab9-a021-bab40eb0203b" + ], + "x-ms-correlation-request-id": [ + "2d9e5a29-509b-4ab9-a021-bab40eb0203b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T024846Z:2d9e5a29-509b-4ab9-a021-bab40eb0203b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:48:45 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31932" + ], + "x-ms-request-id": [ + "7f04c90c-6720-4559-8096-8f3c6f068b19" + ], + "x-ms-correlation-request-id": [ + "7f04c90c-6720-4559-8096-8f3c6f068b19" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T024901Z:7f04c90c-6720-4559-8096-8f3c6f068b19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:49:00 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31931" + ], + "x-ms-request-id": [ + "1a313b08-f7c1-4003-859b-476b002c29eb" + ], + "x-ms-correlation-request-id": [ + "1a313b08-f7c1-4003-859b-476b002c29eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T024916Z:1a313b08-f7c1-4003-859b-476b002c29eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:49:16 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31930" + ], + "x-ms-request-id": [ + "808878da-4648-425a-827e-6fb812d1c7f7" + ], + "x-ms-correlation-request-id": [ + "808878da-4648-425a-827e-6fb812d1c7f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T024931Z:808878da-4648-425a-827e-6fb812d1c7f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:49:31 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEV0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31929" + ], + "x-ms-request-id": [ + "70a70d68-6183-4fd1-b5a5-1611f9ecddbf" ], "x-ms-correlation-request-id": [ - "8e574d08-c76e-4fd6-8038-ad116bc1adef" + "70a70d68-6183-4fd1-b5a5-1611f9ecddbf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150426T031028Z:8e574d08-c76e-4fd6-8038-ad116bc1adef" + "CENTRALUS:20150430T024947Z:70a70d68-6183-4fd1-b5a5-1611f9ecddbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2563,7 +2779,7 @@ "no-cache" ], "Date": [ - "Sun, 26 Apr 2015 03:10:27 GMT" + "Thu, 30 Apr 2015 02:49:47 GMT" ] }, "StatusCode": 200 @@ -2571,14 +2787,14 @@ ], "Names": { "Test-VirtualNetworkGatewayConnectionSharedKeyCRUD": [ - "onesdk4111", - "onesdk5600", - "onesdk8068", - "onesdk5554", - "onesdk4259", - "onesdk6483", - "onesdk3213", - "onesdk3172" + "onesdk451", + "onesdk1130", + "onesdk882", + "onesdk5569", + "onesdk6468", + "onesdk7361", + "onesdk8912", + "onesdk9821" ] }, "Variables": { diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayCRUD.json index 1723498f2611..5185b57983f0 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayCRUD.json +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkGatewayTests/TestVirtualNetworkGatewayCRUD.json @@ -1,8 +1,104 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk716?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "52683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-request-id": [ + "b076e4e5-1f07-46b9-a65e-3a28c7b6dcec" + ], + "x-ms-correlation-request-id": [ + "b076e4e5-1f07-46b9-a65e-3a28c7b6dcec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T023336Z:b076e4e5-1f07-46b9-a65e-3a28c7b6dcec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:33:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Northwest US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-02\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webquotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premierAddOns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-privatepreview\",\r\n \"2014-11-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01\",\r\n \"2014-11-01-privatepreview\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-privatepreview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api\",\r\n \"namespace\": \"api\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/api/XmlValidator/\",\r\n \"namespace\": \"api/XmlValidator/\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Azure.CacheRP\",\r\n \"namespace\": \"Azure.CacheRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/documentdb\",\r\n \"namespace\": \"documentdb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"documentService\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"v2\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI\",\r\n \"namespace\": \"EMA.EAI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/EMA.EAI.XmlValidator\",\r\n \"namespace\": \"EMA.EAI.XmlValidator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"XmlValidatorMicroservice\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker1\",\r\n \"namespace\": \"Linkchecker1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker1\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM1\",\r\n \"namespace\": \"Linkchecker-ARM1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Linkchecker-ARM2\",\r\n \"namespace\": \"Linkchecker-ARM2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Linkchecker2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Linkchecker3\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/memorynamespace\",\r\n \"namespace\": \"memorynamespace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"memorygame\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure\",\r\n \"namespace\": \"Microsoft.Azure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.Notifications\",\r\n \"namespace\": \"Microsoft.Azure.Notifications\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationhubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Azure.TestMarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Azure.TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.billingapi\",\r\n \"namespace\": \"microsoft.billingapi\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo\",\r\n \"namespace\": \"Microsoft.Cabo\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Cabo.v2\",\r\n \"namespace\": \"Microsoft.Cabo.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"caboAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/deploymentSlots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\",\r\n \"Northwest US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"activityTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"computeTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"websites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.dns\",\r\n \"namespace\": \"microsoft.dns\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-16-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.GenericAppService\",\r\n \"namespace\": \"Microsoft.GenericAppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataService\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.giyerHDInsight\",\r\n \"namespace\": \"Microsoft.giyerHDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight-nemadj\",\r\n \"namespace\": \"Microsoft.HDInsight-nemadj\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Current\",\r\n \"namespace\": \"Microsoft.HDInsight_Current\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_Dogfood\",\r\n \"namespace\": \"Microsoft.HDInsight_Dogfood\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsight_giyer\",\r\n \"namespace\": \"Microsoft.HDInsight_giyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightCurrent\",\r\n \"namespace\": \"Microsoft.HDInsightCurrent\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.HDInsightgiyer\",\r\n \"namespace\": \"Microsoft.HDInsightgiyer\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona\",\r\n \"namespace\": \"Microsoft.Kona\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.KoboPPE\",\r\n \"namespace\": \"Microsoft.Kona.KoboPPE\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Kona.v2\",\r\n \"namespace\": \"Microsoft.Kona.v2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"konaAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"konaAccounts/job\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Siena\",\r\n \"namespace\": \"Microsoft.Siena\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sienaApps\",\r\n \"locations\": [\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\",\r\n \"Japan\",\r\n \"Brazil\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/resourcePoolDatabaseActivity\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/databases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Test.MarketPlaceRP\",\r\n \"namespace\": \"Microsoft.Test.MarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Servers\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.TestSB\",\r\n \"namespace\": \"Microsoft.TestSB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/MS.Intune.Test1\",\r\n \"namespace\": \"MS.Intune.Test1\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Devices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngine\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/rdsT15\",\r\n \"namespace\": \"rdsT15\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"desktops\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2012-01-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Sendgrid\",\r\n \"namespace\": \"Sendgrid\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgüäzäzy€z\",\r\n \"namespace\": \"SpartaAutomation_fgüäzäzy€z\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_Afgh€ghiöü\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_üäzy€zy€äz\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_öüäzy€y€gh\",\r\n \"namespace\": \"SpartaAutomation_öüäzy€y€gh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_€äzyAfghiö\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_hiöühiöühi\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SpartaAutomation_fgh€äzy€y€\",\r\n \"namespace\": \"SpartaAutomation_fgh€äzy€y€\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SpartaAutomation_iöüäziöüäz\",\r\n \"locations\": [\r\n \"DevFabric\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"SpartaAutomation_zy€hiöüäzy\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Storeubb.Ubbresource2\",\r\n \"namespace\": \"Storeubb.Ubbresource2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ubbresource2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP\",\r\n \"namespace\": \"TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/TestMarketPlaceRP3\",\r\n \"namespace\": \"TestMarketPlaceRP3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VisualStudio\",\r\n \"namespace\": \"VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/VJ_TestMarketPlaceRP\",\r\n \"namespace\": \"VJ_TestMarketPlaceRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"MarketPlaceResource\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/XmlValidatorMicroservice\",\r\n \"namespace\": \"XmlValidatorMicroservice\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"api\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/validateAction\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"api/XmlValidator/Configuration\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "52683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-request-id": [ + "34087e46-87fe-417d-a47b-0f3ae6f55377" + ], + "x-ms-correlation-request-id": [ + "34087e46-87fe-417d-a47b-0f3ae6f55377" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150430T023345Z:34087e46-87fe-417d-a47b-0f3ae6f55377" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Apr 2015 02:33:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazYwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +124,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "31966" ], "x-ms-request-id": [ - "14190806-50ef-4e72-81b5-a9bf8a7af9a6" + "570fcb06-c07b-474b-a88c-1348df7355ae" ], "x-ms-correlation-request-id": [ - "14190806-50ef-4e72-81b5-a9bf8a7af9a6" + "570fcb06-c07b-474b-a88c-1348df7355ae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235109Z:14190806-50ef-4e72-81b5-a9bf8a7af9a6" + "CENTRALUS:20150430T023354Z:570fcb06-c07b-474b-a88c-1348df7355ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +142,14 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:51:09 GMT" + "Thu, 30 Apr 2015 02:33:54 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk716?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazYwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +169,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "31964" ], "x-ms-request-id": [ - "81cac749-5ab7-4ad6-93c7-09ca320943c4" + "faff0a5d-af0a-4d25-bf98-94187f5c0acf" ], "x-ms-correlation-request-id": [ - "81cac749-5ab7-4ad6-93c7-09ca320943c4" + "faff0a5d-af0a-4d25-bf98-94187f5c0acf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235201Z:81cac749-5ab7-4ad6-93c7-09ca320943c4" + "CENTRALUS:20150430T023450Z:faff0a5d-af0a-4d25-bf98-94187f5c0acf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +187,28 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:52:01 GMT" + "Thu, 30 Apr 2015 02:34:50 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk716?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazYwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "73" + "74" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716\",\r\n \"name\": \"onesdk716\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602\",\r\n \"name\": \"onesdk602\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "200" @@ -127,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-request-id": [ - "78c0874f-fab5-4b36-98c0-92516717e774" + "4a8e2504-ea20-4e31-90bd-b23bd1686ec3" ], "x-ms-correlation-request-id": [ - "78c0874f-fab5-4b36-98c0-92516717e774" + "4a8e2504-ea20-4e31-90bd-b23bd1686ec3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235109Z:78c0874f-fab5-4b36-98c0-92516717e774" + "CENTRALUS:20150430T023355Z:4a8e2504-ea20-4e31-90bd-b23bd1686ec3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +241,14 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:51:09 GMT" + "Thu, 30 Apr 2015 02:33:54 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +271,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "31965" ], "x-ms-request-id": [ - "fe0ccdfd-ab2f-4f25-b970-187c79bc65ab" + "0f87e1a5-4f34-40a2-810f-068901026044" ], "x-ms-correlation-request-id": [ - "fe0ccdfd-ab2f-4f25-b970-187c79bc65ab" + "0f87e1a5-4f34-40a2-810f-068901026044" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235109Z:fe0ccdfd-ab2f-4f25-b970-187c79bc65ab" + "CENTRALUS:20150430T023355Z:0f87e1a5-4f34-40a2-810f-068901026044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +289,14 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:51:09 GMT" + "Thu, 30 Apr 2015 02:33:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk716/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk602/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +322,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "centralus:07a1fe22-b8e9-4de0-84a8-616d6296509c" + "centralus:fc1068ac-c303-430b-b30d-2fc41ff6faa4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "31962" ], "x-ms-correlation-request-id": [ - "9dad6d55-2724-42b7-9bc1-ab0c44a2e251" + "a6bbbcc3-3b81-4e37-bfd4-9cb1c9504616" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235044Z:9dad6d55-2724-42b7-9bc1-ab0c44a2e251" + "CENTRALUS:20150430T023339Z:a6bbbcc3-3b81-4e37-bfd4-9cb1c9504616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +340,14 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:50:44 GMT" + "Thu, 30 Apr 2015 02:33:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualnetworks/onesdk725?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazcyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualnetworks/onesdk7163?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazcxNjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -277,13 +373,13 @@ "gateway" ], "x-ms-request-id": [ - "4bb31e99-2ab6-42ab-99e5-b6afeb0c00f0" + "83d87afe-cc32-4f64-a6df-c1cc76221a1b" ], "x-ms-correlation-request-id": [ - "4bb31e99-2ab6-42ab-99e5-b6afeb0c00f0" + "83d87afe-cc32-4f64-a6df-c1cc76221a1b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235051Z:4bb31e99-2ab6-42ab-99e5-b6afeb0c00f0" + "CENTRALUS:20150430T023335Z:83d87afe-cc32-4f64-a6df-c1cc76221a1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +388,14 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:50:51 GMT" + "Thu, 30 Apr 2015 02:33:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualnetworks/onesdk725?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazcyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualnetworks/onesdk7163?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazcxNjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +403,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk725\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725\",\r\n \"etag\": \"W/\\\"1323d78f-eac3-4312-8e4c-a7fb03ec0435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"1323d78f-eac3-4312-8e4c-a7fb03ec0435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7163\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163\",\r\n \"etag\": \"W/\\\"bb9ecfb0-6627-467f-bcc1-5b29659a2cb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"bb9ecfb0-6627-467f-bcc1-5b29659a2cb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "841" + "845" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +418,7 @@ "no-cache" ], "x-ms-request-id": [ - "06392d12-443e-4952-afd6-d0a536c20228" + "924aecf5-fc2b-4db7-8a3b-2e71615b834a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +427,30 @@ "no-cache" ], "ETag": [ - "W/\"1323d78f-eac3-4312-8e4c-a7fb03ec0435\"" + "W/\"bb9ecfb0-6627-467f-bcc1-5b29659a2cb2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "31964" ], "x-ms-correlation-request-id": [ - "cfac9c45-cddc-420b-89a9-d3ca24679cbf" + "d802c3ea-4fbc-4ecf-9900-2a8f767ad4ea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235103Z:cfac9c45-cddc-420b-89a9-d3ca24679cbf" + "CENTRALUS:20150430T023347Z:d802c3ea-4fbc-4ecf-9900-2a8f767ad4ea" ], "Date": [ - "Sat, 25 Apr 2015 23:51:03 GMT" + "Thu, 30 Apr 2015 02:33:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualnetworks/onesdk725?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazcyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualnetworks/onesdk7163?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazcxNjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +458,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk725\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725\",\r\n \"etag\": \"W/\\\"1323d78f-eac3-4312-8e4c-a7fb03ec0435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"1323d78f-eac3-4312-8e4c-a7fb03ec0435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7163\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163\",\r\n \"etag\": \"W/\\\"bb9ecfb0-6627-467f-bcc1-5b29659a2cb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"bb9ecfb0-6627-467f-bcc1-5b29659a2cb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "841" + "845" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +473,7 @@ "no-cache" ], "x-ms-request-id": [ - "4f6559bc-d591-4a35-b619-e40f6d3f8a63" + "55f44967-eb1c-4d1d-83e4-7237c90427ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +482,47 @@ "no-cache" ], "ETag": [ - "W/\"1323d78f-eac3-4312-8e4c-a7fb03ec0435\"" + "W/\"bb9ecfb0-6627-467f-bcc1-5b29659a2cb2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "31963" ], "x-ms-correlation-request-id": [ - "93abd8e9-eaf2-4353-b26b-f303130834d6" + "bacc550e-10b7-4243-8ca2-29d42fc425af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235103Z:93abd8e9-eaf2-4353-b26b-f303130834d6" + "CENTRALUS:20150430T023347Z:bacc550e-10b7-4243-8ca2-29d42fc425af" ], "Date": [ - "Sat, 25 Apr 2015 23:51:03 GMT" + "Thu, 30 Apr 2015 02:33:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualnetworks/onesdk725?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazcyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualnetworks/onesdk7163?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL29uZXNkazcxNjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk725\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"name\": \"onesdk7163\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "406" + "408" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk725\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725\",\r\n \"etag\": \"W/\\\"d46132e9-bf1a-418b-8421-d95fc59ab1cd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"d46132e9-bf1a-418b-8421-d95fc59ab1cd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7163\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163\",\r\n \"etag\": \"W/\\\"5f20d035-9872-46ca-930a-1f14e5af3ad6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"5f20d035-9872-46ca-930a-1f14e5af3ad6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "839" + "843" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +537,10 @@ "10" ], "x-ms-request-id": [ - "ebe16737-f254-4083-ae9c-d4e42f854ef6" + "1f2ecaa6-0cc3-4685-9f54-7637cd632703" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/ebe16737-f254-4083-ae9c-d4e42f854ef6?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/1f2ecaa6-0cc3-4685-9f54-7637cd632703?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +553,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "47ec1db9-f935-46fe-82f6-e9036882ceec" + "8b36bd49-a402-487c-b312-1f406b31452b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235052Z:47ec1db9-f935-46fe-82f6-e9036882ceec" + "CENTRALUS:20150430T023336Z:8b36bd49-a402-487c-b312-1f406b31452b" ], "Date": [ - "Sat, 25 Apr 2015 23:50:52 GMT" + "Thu, 30 Apr 2015 02:33:36 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/ebe16737-f254-4083-ae9c-d4e42f854ef6?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2ViZTE2NzM3LWYyNTQtNDA4My1hZTljLWQ0ZTQyZjg1NGVmNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/1f2ecaa6-0cc3-4685-9f54-7637cd632703?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzFmMmVjYWE2LTBjYzMtNDY4NS05ZjU0LTc2MzdjZDYzMjcwMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +595,7 @@ "no-cache" ], "x-ms-request-id": [ - "dd5c02b2-44be-4b1e-a40b-8b278ada380c" + "4deccf37-9559-4fcf-b763-f6369cba4450" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +608,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "31966" ], "x-ms-correlation-request-id": [ - "38cd2550-74c2-460c-8a10-13408edc202f" + "c0793f92-789a-44e8-b912-3301c3f6e4b5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235053Z:38cd2550-74c2-460c-8a10-13408edc202f" + "CENTRALUS:20150430T023336Z:c0793f92-789a-44e8-b912-3301c3f6e4b5" ], "Date": [ - "Sat, 25 Apr 2015 23:50:52 GMT" + "Thu, 30 Apr 2015 02:33:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/ebe16737-f254-4083-ae9c-d4e42f854ef6?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2ViZTE2NzM3LWYyNTQtNDA4My1hZTljLWQ0ZTQyZjg1NGVmNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/1f2ecaa6-0cc3-4685-9f54-7637cd632703?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzFmMmVjYWE2LTBjYzMtNDY4NS05ZjU0LTc2MzdjZDYzMjcwMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +650,7 @@ "no-cache" ], "x-ms-request-id": [ - "0717dc90-4ee3-4042-9560-0ea0a2bc84e3" + "2663810e-8518-483f-83eb-0cf92f8a4430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +663,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "31965" ], "x-ms-correlation-request-id": [ - "7e424c15-1005-4215-9e1c-c2c7bda5bfab" + "7122c777-7ee0-4382-a79c-ad66a3992e0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235103Z:7e424c15-1005-4215-9e1c-c2c7bda5bfab" + "CENTRALUS:20150430T023346Z:7122c777-7ee0-4382-a79c-ad66a3992e0f" ], "Date": [ - "Sat, 25 Apr 2015 23:51:03 GMT" + "Thu, 30 Apr 2015 02:33:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrNDU5Ny8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrMjI3NS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,13 +705,13 @@ "gateway" ], "x-ms-request-id": [ - "637320ce-7721-4638-8f9c-c068343c964b" + "25bf25e5-6437-4aab-9ab6-adbf4b2a8701" ], "x-ms-correlation-request-id": [ - "637320ce-7721-4638-8f9c-c068343c964b" + "25bf25e5-6437-4aab-9ab6-adbf4b2a8701" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235103Z:637320ce-7721-4638-8f9c-c068343c964b" + "CENTRALUS:20150430T023347Z:25bf25e5-6437-4aab-9ab6-adbf4b2a8701" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +720,14 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:51:03 GMT" + "Thu, 30 Apr 2015 02:33:47 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrNDU5Ny8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrMjI3NS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +735,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4597\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\",\r\n \"etag\": \"W/\\\"287d026b-7f3b-4e00-9c5f-519ba8d842bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk8004\",\r\n \"fqdn\": \"onesdk8004.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2275\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\",\r\n \"etag\": \"W/\\\"0ab5f4d4-3cc2-4c08-97e0-f7287ae1ab76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk4470\",\r\n \"fqdn\": \"onesdk4470.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "508" + "509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +750,7 @@ "no-cache" ], "x-ms-request-id": [ - "5521a6ef-258c-4de7-8a7d-ecc7a735d443" + "2ffe5f18-917d-4b99-b260-637d2f513805" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,47 +759,47 @@ "no-cache" ], "ETag": [ - "W/\"287d026b-7f3b-4e00-9c5f-519ba8d842bd\"" + "W/\"0ab5f4d4-3cc2-4c08-97e0-f7287ae1ab76\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "31960" ], "x-ms-correlation-request-id": [ - "10619fa3-5ccf-4c5a-bb3c-eed4e5f5b25d" + "d76fd86c-3a8c-42d2-82c1-a1e4314a400c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235105Z:10619fa3-5ccf-4c5a-bb3c-eed4e5f5b25d" + "CENTRALUS:20150430T023348Z:d76fd86c-3a8c-42d2-82c1-a1e4314a400c" ], "Date": [ - "Sat, 25 Apr 2015 23:51:05 GMT" + "Thu, 30 Apr 2015 02:33:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrNDU5Ny8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvb25lc2RrMjI3NS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk8004\"\r\n }\r\n },\r\n \"name\": \"onesdk4597\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk4470\"\r\n }\r\n },\r\n \"name\": \"onesdk2275\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "240" + "241" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4597\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\",\r\n \"etag\": \"W/\\\"8cb96564-c16b-4ed0-b9ef-b6bb3d86eb88\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk8004\",\r\n \"fqdn\": \"onesdk8004.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2275\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\",\r\n \"etag\": \"W/\\\"2d75fc84-dbfa-45d8-96e3-bcd575f231e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"onesdk4470\",\r\n \"fqdn\": \"onesdk4470.azure-bvt.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "507" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +814,10 @@ "10" ], "x-ms-request-id": [ - "afb80071-8032-40ee-b57c-d101905a206a" + "2e002eec-9883-4cc6-a3a4-8042b4ebdca1" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/afb80071-8032-40ee-b57c-d101905a206a?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/2e002eec-9883-4cc6-a3a4-8042b4ebdca1?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,23 +830,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "790a7ff1-c7c7-4b36-aa1d-e9ea9dfc228a" + "e15e2d4f-50c4-4c3f-b0a7-3dcf004337be" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235105Z:790a7ff1-c7c7-4b36-aa1d-e9ea9dfc228a" + "CENTRALUS:20150430T023348Z:e15e2d4f-50c4-4c3f-b0a7-3dcf004337be" ], "Date": [ - "Sat, 25 Apr 2015 23:51:05 GMT" + "Thu, 30 Apr 2015 02:33:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/afb80071-8032-40ee-b57c-d101905a206a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2FmYjgwMDcxLTgwMzItNDBlZS1iNTdjLWQxMDE5MDVhMjA2YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/2e002eec-9883-4cc6-a3a4-8042b4ebdca1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzJlMDAyZWVjLTk4ODMtNGNjNi1hM2E0LTgwNDJiNGViZGNhMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +872,7 @@ "no-cache" ], "x-ms-request-id": [ - "783bef18-04aa-45e3-9cdb-990b8df4cf2a" + "60c32c14-a092-4fef-b90d-6ad4ba0db59b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +885,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "31961" ], "x-ms-correlation-request-id": [ - "71b10798-5825-41a4-9dac-3b1de7d00697" + "c9ef38bd-8f02-4777-bfcb-e201a246b344" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235105Z:71b10798-5825-41a4-9dac-3b1de7d00697" + "CENTRALUS:20150430T023348Z:c9ef38bd-8f02-4777-bfcb-e201a246b344" ], "Date": [ - "Sat, 25 Apr 2015 23:51:05 GMT" + "Thu, 30 Apr 2015 02:33:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways/onesdk235?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsyMzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs5NzgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,13 +927,13 @@ "gateway" ], "x-ms-request-id": [ - "22922cf3-58fb-44f5-857c-f45e685a14dc" + "6beaf13a-49da-4f0c-87be-66c111ade293" ], "x-ms-correlation-request-id": [ - "22922cf3-58fb-44f5-857c-f45e685a14dc" + "6beaf13a-49da-4f0c-87be-66c111ade293" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235105Z:22922cf3-58fb-44f5-857c-f45e685a14dc" + "CENTRALUS:20150430T023348Z:6beaf13a-49da-4f0c-87be-66c111ade293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +942,14 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:51:05 GMT" + "Thu, 30 Apr 2015 02:33:48 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways/onesdk235?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsyMzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs5NzgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +957,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235/ipConfigurations/onesdk91\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9783\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/ipConfigurations/onesdk2370\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1286" + "1295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +972,7 @@ "no-cache" ], "x-ms-request-id": [ - "2678b501-2fb3-4301-9976-c9f5229b48d1" + "2af3d688-a7a9-4a8a-b8a9-3f6c456b4912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -889,23 +985,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "31956" ], "x-ms-correlation-request-id": [ - "b84485cd-3e3f-41e6-a382-13e66c4bc90d" + "8464cfc7-ba1a-4aa2-9c65-8fde765d6077" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235117Z:b84485cd-3e3f-41e6-a382-13e66c4bc90d" + "CENTRALUS:20150430T023400Z:8464cfc7-ba1a-4aa2-9c65-8fde765d6077" ], "Date": [ - "Sat, 25 Apr 2015 23:51:16 GMT" + "Thu, 30 Apr 2015 02:34:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways/onesdk235?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsyMzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs5NzgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,10 +1009,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235/ipConfigurations/onesdk91\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9783\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/ipConfigurations/onesdk2370\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1286" + "1295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -928,7 +1024,7 @@ "no-cache" ], "x-ms-request-id": [ - "94163756-7592-423a-91c7-e8b80744131c" + "d1d29e53-e97a-4eea-bf04-b010988a94aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,23 +1037,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "31955" ], "x-ms-correlation-request-id": [ - "f7218040-5ca7-46cc-a0ed-06e8af25fbcf" + "78902a89-0bc6-4025-8c69-a0e4d47cedde" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235117Z:f7218040-5ca7-46cc-a0ed-06e8af25fbcf" + "CENTRALUS:20150430T023400Z:78902a89-0bc6-4025-8c69-a0e4d47cedde" ], "Date": [ - "Sat, 25 Apr 2015 23:51:17 GMT" + "Thu, 30 Apr 2015 02:34:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways/onesdk235?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsyMzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs5NzgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -965,10 +1061,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235/ipConfigurations/onesdk91\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9783\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/ipConfigurations/onesdk2370\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1286" + "1295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -980,7 +1076,7 @@ "no-cache" ], "x-ms-request-id": [ - "31a09287-1b55-4e0c-95df-2b5e093565e2" + "1858eae6-6d4e-44a2-94da-b53d0a76ad1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,23 +1089,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "31953" ], "x-ms-correlation-request-id": [ - "e15f0ead-5248-459c-9ffe-8ed2a0fe4d96" + "e03dba15-5f67-4b5b-8e25-0e8a21e0ee99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235117Z:e15f0ead-5248-459c-9ffe-8ed2a0fe4d96" + "CENTRALUS:20150430T023400Z:e03dba15-5f67-4b5b-8e25-0e8a21e0ee99" ], "Date": [ - "Sat, 25 Apr 2015 23:51:17 GMT" + "Thu, 30 Apr 2015 02:34:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways/onesdk235?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsyMzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs5NzgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1017,10 +1113,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235/ipConfigurations/onesdk91\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9783\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/ipConfigurations/onesdk2370\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1294" + "1303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1032,7 +1128,7 @@ "no-cache" ], "x-ms-request-id": [ - "489c0e6a-ef61-4442-bfb4-c2b31faf5ab1" + "6afbeab9-bda9-41da-a658-c321a554b414" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,23 +1141,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "31950" ], "x-ms-correlation-request-id": [ - "9191c79a-edd7-467e-a917-8b66831fca89" + "bdc943e4-1a31-4474-8979-8d3d600bf9f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235128Z:9191c79a-edd7-467e-a917-8b66831fca89" + "CENTRALUS:20150430T023411Z:bdc943e4-1a31-4474-8979-8d3d600bf9f0" ], "Date": [ - "Sat, 25 Apr 2015 23:51:28 GMT" + "Thu, 30 Apr 2015 02:34:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways/onesdk235?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsyMzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs5NzgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1069,10 +1165,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235/ipConfigurations/onesdk91\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9783\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/ipConfigurations/onesdk2370\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false,\r\n \"ipAddress\": \"10.0.0.1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1294" + "1303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1084,7 +1180,7 @@ "no-cache" ], "x-ms-request-id": [ - "4e97a84f-3020-480b-aaf6-e8fe63f496c1" + "66a467c3-9154-4efe-baa6-66713d5f9c62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1097,40 +1193,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "31949" ], "x-ms-correlation-request-id": [ - "e1b58481-05f4-413b-8f31-a4d1d6c7ccd2" + "abdaeccb-2f4b-4cc4-9c98-16e2349880ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235128Z:e1b58481-05f4-413b-8f31-a4d1d6c7ccd2" + "CENTRALUS:20150430T023411Z:abdaeccb-2f4b-4cc4-9c98-16e2349880ff" ], "Date": [ - "Sat, 25 Apr 2015 23:51:28 GMT" + "Thu, 30 Apr 2015 02:34:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualnetworkgateways/onesdk235?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbG5ldHdvcmtnYXRld2F5cy9vbmVzZGsyMzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualnetworkgateways/onesdk9783?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtnYXRld2F5cy9vbmVzZGs5NzgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n }\r\n },\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfigurations/onesdk91\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false\r\n },\r\n \"name\": \"onesdk235\",\r\n \"type\": \"microsoft.network/virtualnetworkgateways\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n }\r\n },\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/ResourceGroupNotSet/providers/Microsoft.Network/virtualNetworkGateways/VirtualNetworkGatewayNameNotSet/virtualNetworkGatewayIpConfigurations/onesdk2370\"\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"enableBgp\": false\r\n },\r\n \"name\": \"onesdk9783\",\r\n \"type\": \"microsoft.network/virtualnetworkgateways\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1040" + "1047" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235\",\r\n \"etag\": \"W/\\\"742789bf-26ea-4680-8a30-e4143f968552\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"884f68fc-48d1-4d2d-85d8-835e433c87d7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235/ipConfigurations/onesdk91\",\r\n \"etag\": \"W/\\\"742789bf-26ea-4680-8a30-e4143f968552\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9783\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783\",\r\n \"etag\": \"W/\\\"d3eff5e9-02a1-439d-ab07-fc907cd16349\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"d60168a3-cc88-4535-8f37-28f8d6756ef3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/ipConfigurations/onesdk2370\",\r\n \"etag\": \"W/\\\"d3eff5e9-02a1-439d-ab07-fc907cd16349\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1374" + "1383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1145,10 +1241,10 @@ "10" ], "x-ms-request-id": [ - "26968004-58e3-465b-a2f1-ed424f373e67" + "cb85f9d0-0bb2-40e6-b107-8bf247a42443" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/26968004-58e3-465b-a2f1-ed424f373e67?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/cb85f9d0-0bb2-40e6-b107-8bf247a42443?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1161,40 +1257,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-correlation-request-id": [ - "ee1b483d-a048-42c6-9329-1537136d1f0f" + "f5b390c3-bd0a-4069-b91e-733a4e503725" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235106Z:ee1b483d-a048-42c6-9329-1537136d1f0f" + "CENTRALUS:20150430T023349Z:f5b390c3-bd0a-4069-b91e-733a4e503725" ], "Date": [ - "Sat, 25 Apr 2015 23:51:06 GMT" + "Thu, 30 Apr 2015 02:33:49 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualnetworkgateways/onesdk235?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbG5ldHdvcmtnYXRld2F5cy9vbmVzZGsyMzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualnetworkgateways/onesdk9783?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtnYXRld2F5cy9vbmVzZGs5NzgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"enableBgp\": false\r\n },\r\n \"name\": \"onesdk235\",\r\n \"type\": \"microsoft.network/virtualnetworkgateways\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"enableBgp\": false\r\n },\r\n \"name\": \"onesdk9783\",\r\n \"type\": \"microsoft.network/virtualnetworkgateways\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "224" + "226" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235\",\r\n \"etag\": \"W/\\\"fa6e4d6d-d842-4ed5-81b6-63d3af7c27a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"884f68fc-48d1-4d2d-85d8-835e433c87d7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235/ipConfigurations/onesdk91\",\r\n \"etag\": \"W/\\\"fa6e4d6d-d842-4ed5-81b6-63d3af7c27a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9783\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783\",\r\n \"etag\": \"W/\\\"f541b2ef-f061-46ca-a651-6834f96e6088\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"armGuid\": \"d60168a3-cc88-4535-8f37-28f8d6756ef3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/ipConfigurations/onesdk2370\",\r\n \"etag\": \"W/\\\"f541b2ef-f061-46ca-a651-6834f96e6088\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1382" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1209,10 +1305,10 @@ "10" ], "x-ms-request-id": [ - "c1059ac4-ce9b-4389-b2cc-d411e121022f" + "2c8c1431-4287-4f95-84c1-e9876e6e41e3" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c1059ac4-ce9b-4389-b2cc-d411e121022f?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/2c8c1431-4287-4f95-84c1-e9876e6e41e3?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1225,23 +1321,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1195" ], "x-ms-correlation-request-id": [ - "f1933f23-c638-450a-b942-54e057b46347" + "b52435f4-d24b-49b7-8f57-5493c6df681d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235118Z:f1933f23-c638-450a-b942-54e057b46347" + "CENTRALUS:20150430T023401Z:b52435f4-d24b-49b7-8f57-5493c6df681d" ], "Date": [ - "Sat, 25 Apr 2015 23:51:17 GMT" + "Thu, 30 Apr 2015 02:34:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/26968004-58e3-465b-a2f1-ed424f373e67?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzI2OTY4MDA0LTU4ZTMtNDY1Yi1hMmYxLWVkNDI0ZjM3M2U2Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/cb85f9d0-0bb2-40e6-b107-8bf247a42443?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2NiODVmOWQwLTBiYjItNDBlNi1iMTA3LThiZjI0N2E0MjQ0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1267,7 +1363,7 @@ "no-cache" ], "x-ms-request-id": [ - "8bc06335-2db7-41ce-b94e-b250040ce768" + "bb25ffd2-17ce-487b-ae3d-8f9e9f8c540f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1280,23 +1376,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "31958" ], "x-ms-correlation-request-id": [ - "80d64955-769b-404d-942f-5d0220f8f0f0" + "d55cb245-39ef-4f69-9cee-e9be484765fa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235106Z:80d64955-769b-404d-942f-5d0220f8f0f0" + "CENTRALUS:20150430T023350Z:d55cb245-39ef-4f69-9cee-e9be484765fa" ], "Date": [ - "Sat, 25 Apr 2015 23:51:06 GMT" + "Thu, 30 Apr 2015 02:33:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/26968004-58e3-465b-a2f1-ed424f373e67?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzI2OTY4MDA0LTU4ZTMtNDY1Yi1hMmYxLWVkNDI0ZjM3M2U2Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/cb85f9d0-0bb2-40e6-b107-8bf247a42443?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2NiODVmOWQwLTBiYjItNDBlNi1iMTA3LThiZjI0N2E0MjQ0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1322,7 +1418,7 @@ "no-cache" ], "x-ms-request-id": [ - "29cd3ae5-98e2-4abb-910f-1232406fce43" + "aa12823b-8a0a-4cf6-b2f8-1ac04d286cc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1335,23 +1431,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "31957" ], "x-ms-correlation-request-id": [ - "f63737f4-71e3-430b-8395-b4cbbc7a8079" + "538708d7-087d-44d6-831d-a040a3ca889f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235117Z:f63737f4-71e3-430b-8395-b4cbbc7a8079" + "CENTRALUS:20150430T023400Z:538708d7-087d-44d6-831d-a040a3ca889f" ], "Date": [ - "Sat, 25 Apr 2015 23:51:16 GMT" + "Thu, 30 Apr 2015 02:33:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1359,10 +1455,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235\",\r\n \"etag\": \"W/\\\"0912ecfe-eb13-49d4-a5d5-8d6cf29df495\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"884f68fc-48d1-4d2d-85d8-835e433c87d7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235/ipConfigurations/onesdk91\",\r\n \"etag\": \"W/\\\"0912ecfe-eb13-49d4-a5d5-8d6cf29df495\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk9783\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783\",\r\n \"etag\": \"W/\\\"d38601a0-44a0-4229-8878-25096aeb094b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"d60168a3-cc88-4535-8f37-28f8d6756ef3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/ipConfigurations/onesdk2370\",\r\n \"etag\": \"W/\\\"d38601a0-44a0-4229-8878-25096aeb094b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"Default\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1544" + "1553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1374,7 +1470,7 @@ "no-cache" ], "x-ms-request-id": [ - "43e4e528-4e32-461c-a262-d157383ac292" + "4be011cb-3c06-455e-8e1e-030dd5b725d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1387,23 +1483,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "31954" ], "x-ms-correlation-request-id": [ - "ddb4e243-4bc0-43e6-8e39-1638e28def8e" + "a686e1e7-b988-4ee8-a08d-01a4c2a06376" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235117Z:ddb4e243-4bc0-43e6-8e39-1638e28def8e" + "CENTRALUS:20150430T023400Z:a686e1e7-b988-4ee8-a08d-01a4c2a06376" ], "Date": [ - "Sat, 25 Apr 2015 23:51:17 GMT" + "Thu, 30 Apr 2015 02:34:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1411,10 +1507,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235\",\r\n \"etag\": \"W/\\\"c48cd5c3-2229-4648-8122-c1fb21d7d6d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"884f68fc-48d1-4d2d-85d8-835e433c87d7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk91\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworkGateways/onesdk235/ipConfigurations/onesdk91\",\r\n \"etag\": \"W/\\\"c48cd5c3-2229-4648-8122-c1fb21d7d6d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/publicIPAddresses/onesdk4597\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/Microsoft.Network/virtualNetworks/onesdk725/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk9783\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783\",\r\n \"etag\": \"W/\\\"340bbf58-355a-4ff9-a930-187bd313df2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"armGuid\": \"d60168a3-cc88-4535-8f37-28f8d6756ef3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"onesdk2370\",\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/ipConfigurations/onesdk2370\",\r\n \"etag\": \"W/\\\"340bbf58-355a-4ff9-a930-187bd313df2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/publicIPAddresses/onesdk2275\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworks/onesdk7163/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewaySize\": \"HighPerformance\",\r\n \"gatewayType\": \"DynamicRouting\",\r\n \"vpnClientAddressSpace\": {},\r\n \"enableBgp\": false\r\n },\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1552" + "1561" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1426,7 +1522,7 @@ "no-cache" ], "x-ms-request-id": [ - "52b85448-bd6e-48ed-a54a-5c7beeb503d7" + "083ebcd3-3474-4b44-bc0a-a3533d9d75b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1439,23 +1535,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "31948" ], "x-ms-correlation-request-id": [ - "3c6bed79-7fb1-462f-b5b1-00d0bf5d05b9" + "e32c5cac-15f8-4dc0-a7dc-f75ecb856316" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235129Z:3c6bed79-7fb1-462f-b5b1-00d0bf5d05b9" + "CENTRALUS:20150430T023412Z:e32c5cac-15f8-4dc0-a7dc-f75ecb856316" ], "Date": [ - "Sat, 25 Apr 2015 23:51:28 GMT" + "Thu, 30 Apr 2015 02:34:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1478,7 +1574,7 @@ "no-cache" ], "x-ms-request-id": [ - "e1ee5cb6-8840-42f7-a280-8b0bc4e4b375" + "879244d3-1611-459b-9f49-f6080d6e4ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,23 +1587,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" + "31945" ], "x-ms-correlation-request-id": [ - "1687f4b2-40ff-43e7-b224-84939a0c1de1" + "994a2182-df2d-4443-a90a-62f350dd0938" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235140Z:1687f4b2-40ff-43e7-b224-84939a0c1de1" + "CENTRALUS:20150430T023423Z:994a2182-df2d-4443-a90a-62f350dd0938" ], "Date": [ - "Sat, 25 Apr 2015 23:51:39 GMT" + "Thu, 30 Apr 2015 02:34:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c1059ac4-ce9b-4389-b2cc-d411e121022f?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2MxMDU5YWM0LWNlOWItNDM4OS1iMmNjLWQ0MTFlMTIxMDIyZj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/2c8c1431-4287-4f95-84c1-e9876e6e41e3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzJjOGMxNDMxLTQyODctNGY5NS04NGMxLWU5ODc2ZTZlNDFlMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1533,7 +1629,7 @@ "no-cache" ], "x-ms-request-id": [ - "eb56505b-174b-427b-97f1-1cb467add09d" + "a9ea3b26-d21a-40fa-ac84-3ada7e1b68e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1546,23 +1642,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "31952" ], "x-ms-correlation-request-id": [ - "db93ad2b-458e-4319-a5b8-293c39dc501d" + "ecde7678-d292-44ff-b3f5-f9955a1414a6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235118Z:db93ad2b-458e-4319-a5b8-293c39dc501d" + "CENTRALUS:20150430T023401Z:ecde7678-d292-44ff-b3f5-f9955a1414a6" ], "Date": [ - "Sat, 25 Apr 2015 23:51:18 GMT" + "Thu, 30 Apr 2015 02:34:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/c1059ac4-ce9b-4389-b2cc-d411e121022f?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zL2MxMDU5YWM0LWNlOWItNDM4OS1iMmNjLWQ0MTFlMTIxMDIyZj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/2c8c1431-4287-4f95-84c1-e9876e6e41e3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzJjOGMxNDMxLTQyODctNGY5NS04NGMxLWU5ODc2ZTZlNDFlMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1588,7 +1684,7 @@ "no-cache" ], "x-ms-request-id": [ - "7e0d1a06-dcbe-41c3-ae60-a55c0d73e7e5" + "dcc36dc7-6468-4d3f-b0a6-10abdbb54843" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1601,23 +1697,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "31951" ], "x-ms-correlation-request-id": [ - "8f267c83-e27c-4b9c-88d0-4ad5710124b9" + "0e5df571-4f5a-4b14-90bf-c7d1e6dad9cc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235128Z:8f267c83-e27c-4b9c-88d0-4ad5710124b9" + "CENTRALUS:20150430T023411Z:0e5df571-4f5a-4b14-90bf-c7d1e6dad9cc" ], "Date": [ - "Sat, 25 Apr 2015 23:51:27 GMT" + "Thu, 30 Apr 2015 02:34:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk716/providers/microsoft.network/virtualNetworkGateways/onesdk235/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazcxNi9wcm92aWRlcnMvbWljcm9zb2Z0Lm5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGsyMzUvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourceGroups/onesdk602/providers/Microsoft.Network/virtualNetworkGateways/onesdk9783/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlR3JvdXBzL29uZXNkazYwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9vbmVzZGs5NzgzLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1640,10 +1736,10 @@ "10" ], "x-ms-request-id": [ - "6ec7fc24-d057-49db-994e-18607e09a72c" + "22ded710-53cd-4017-a24b-c4a92b18839f" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/6ec7fc24-d057-49db-994e-18607e09a72c?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/22ded710-53cd-4017-a24b-c4a92b18839f?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1652,30 +1748,30 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operationResults/6ec7fc24-d057-49db-994e-18607e09a72c?api-version=2015-05-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operationResults/22ded710-53cd-4017-a24b-c4a92b18839f?api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1194" ], "x-ms-correlation-request-id": [ - "d2257f14-bb65-41ef-a0db-24cf7e9a2c33" + "d9686e1f-4b91-4f3d-bbcb-268fc233c4bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235129Z:d2257f14-bb65-41ef-a0db-24cf7e9a2c33" + "CENTRALUS:20150430T023412Z:d9686e1f-4b91-4f3d-bbcb-268fc233c4bf" ], "Date": [ - "Sat, 25 Apr 2015 23:51:28 GMT" + "Thu, 30 Apr 2015 02:34:11 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/6ec7fc24-d057-49db-994e-18607e09a72c?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzZlYzdmYzI0LWQwNTctNDlkYi05OTRlLTE4NjA3ZTA5YTcyYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/22ded710-53cd-4017-a24b-c4a92b18839f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzIyZGVkNzEwLTUzY2QtNDAxNy1hMjRiLWM0YTkyYjE4ODM5Zj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1701,7 +1797,7 @@ "no-cache" ], "x-ms-request-id": [ - "fb9d2218-bc54-49dd-aa06-451af815e418" + "46add768-44fc-4317-83c6-60d852f711e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1714,23 +1810,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" + "31947" ], "x-ms-correlation-request-id": [ - "7eef19da-001c-464c-928c-ecfbd631103f" + "b953c3df-5bee-4984-9d00-c485137008d7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235129Z:7eef19da-001c-464c-928c-ecfbd631103f" + "CENTRALUS:20150430T023412Z:b953c3df-5bee-4984-9d00-c485137008d7" ], "Date": [ - "Sat, 25 Apr 2015 23:51:28 GMT" + "Thu, 30 Apr 2015 02:34:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/6ec7fc24-d057-49db-994e-18607e09a72c?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzZlYzdmYzI0LWQwNTctNDlkYi05OTRlLTE4NjA3ZTA5YTcyYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/providers/Microsoft.Network/locations/nrp8/operations/22ded710-53cd-4017-a24b-c4a92b18839f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbnJwOC9vcGVyYXRpb25zLzIyZGVkNzEwLTUzY2QtNDAxNy1hMjRiLWM0YTkyYjE4ODM5Zj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1756,7 +1852,7 @@ "no-cache" ], "x-ms-request-id": [ - "84b3a707-c9a9-4378-86c4-143fc36c63bd" + "68f072b6-a25e-4681-a296-c455883016f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1769,23 +1865,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" + "31946" ], "x-ms-correlation-request-id": [ - "20bfb9b5-51cc-46d1-b3d9-b08351b73f8a" + "8021bc39-828d-4acf-8567-704d2cb6a4ed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235139Z:20bfb9b5-51cc-46d1-b3d9-b08351b73f8a" + "CENTRALUS:20150430T023422Z:8021bc39-828d-4acf-8567-704d2cb6a4ed" ], "Date": [ - "Sat, 25 Apr 2015 23:51:39 GMT" + "Thu, 30 Apr 2015 02:34:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk716?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazcxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/resourcegroups/onesdk602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL3Jlc291cmNlZ3JvdXBzL29uZXNkazYwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1808,70 +1904,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "a0053e73-4dfe-4719-bf9b-228e4ee55384" - ], - "x-ms-correlation-request-id": [ - "a0053e73-4dfe-4719-bf9b-228e4ee55384" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235201Z:a0053e73-4dfe-4719-bf9b-228e4ee55384" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 25 Apr 2015 23:52:01 GMT" - ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNVFl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "1192" ], "x-ms-request-id": [ - "25410ec9-d8ad-4b6a-af0c-af37f21a4ee5" + "93b7ba3f-c447-4f9c-93bf-18bfbfb7f8c3" ], "x-ms-correlation-request-id": [ - "25410ec9-d8ad-4b6a-af0c-af37f21a4ee5" + "93b7ba3f-c447-4f9c-93bf-18bfbfb7f8c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235201Z:25410ec9-d8ad-4b6a-af0c-af37f21a4ee5" + "CENTRALUS:20150430T023513Z:93b7ba3f-c447-4f9c-93bf-18bfbfb7f8c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1880,17 +1922,17 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:52:01 GMT" + "Thu, 30 Apr 2015 02:35:13 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNVFl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1916,16 +1958,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "31963" ], "x-ms-request-id": [ - "bd00e87b-209d-4d9f-8e8e-3561ae04da9d" + "93c3439d-6eb5-4d32-8f66-34deb92f7e71" ], "x-ms-correlation-request-id": [ - "bd00e87b-209d-4d9f-8e8e-3561ae04da9d" + "93c3439d-6eb5-4d32-8f66-34deb92f7e71" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235218Z:bd00e87b-209d-4d9f-8e8e-3561ae04da9d" + "CENTRALUS:20150430T023523Z:93c3439d-6eb5-4d32-8f66-34deb92f7e71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1934,17 +1976,17 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:52:18 GMT" + "Thu, 30 Apr 2015 02:35:23 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNVFl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1970,16 +2012,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "31962" ], "x-ms-request-id": [ - "5e654783-e7d3-4ffb-8fce-9d3b25dcd301" + "ebce9fdf-7e3c-4b5c-87bb-bd1ff88e20c3" ], "x-ms-correlation-request-id": [ - "5e654783-e7d3-4ffb-8fce-9d3b25dcd301" + "ebce9fdf-7e3c-4b5c-87bb-bd1ff88e20c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235233Z:5e654783-e7d3-4ffb-8fce-9d3b25dcd301" + "CENTRALUS:20150430T023546Z:ebce9fdf-7e3c-4b5c-87bb-bd1ff88e20c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1988,17 +2030,17 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:52:37 GMT" + "Thu, 30 Apr 2015 02:35:46 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNVFl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2024,16 +2066,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "31961" ], "x-ms-request-id": [ - "5a6ae70d-c807-4542-8204-a169f2362c56" + "d1ff1137-a905-4ffd-bf1d-d44b00ee7f63" ], "x-ms-correlation-request-id": [ - "5a6ae70d-c807-4542-8204-a169f2362c56" + "d1ff1137-a905-4ffd-bf1d-d44b00ee7f63" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235257Z:5a6ae70d-c807-4542-8204-a169f2362c56" + "CENTRALUS:20150430T023609Z:d1ff1137-a905-4ffd-bf1d-d44b00ee7f63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2042,17 +2084,17 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:52:57 GMT" + "Thu, 30 Apr 2015 02:36:08 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNVFl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2078,16 +2120,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "31960" ], "x-ms-request-id": [ - "fd3adce1-801a-4c3d-846a-895e6633be3d" + "1f60bb2d-3c65-40ca-9ce4-a3c02ef4d2f3" ], "x-ms-correlation-request-id": [ - "fd3adce1-801a-4c3d-846a-895e6633be3d" + "1f60bb2d-3c65-40ca-9ce4-a3c02ef4d2f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235312Z:fd3adce1-801a-4c3d-846a-895e6633be3d" + "CENTRALUS:20150430T023626Z:1f60bb2d-3c65-40ca-9ce4-a3c02ef4d2f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2096,17 +2138,17 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:53:12 GMT" + "Thu, 30 Apr 2015 02:36:26 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNVFl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2132,16 +2174,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "31959" ], "x-ms-request-id": [ - "552cf260-65e6-43aa-9ad2-14b63bf91a8f" + "70634cd6-32a3-4cb7-9f35-bae9e4113c97" ], "x-ms-correlation-request-id": [ - "552cf260-65e6-43aa-9ad2-14b63bf91a8f" + "70634cd6-32a3-4cb7-9f35-bae9e4113c97" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235332Z:552cf260-65e6-43aa-9ad2-14b63bf91a8f" + "CENTRALUS:20150430T023645Z:70634cd6-32a3-4cb7-9f35-bae9e4113c97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2150,17 +2192,17 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:53:32 GMT" + "Thu, 30 Apr 2015 02:36:44 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNVFl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2186,16 +2228,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "31958" ], "x-ms-request-id": [ - "39fb7c11-a991-4f1d-8b3d-1d890a6e5696" + "8927e415-4ff5-4ae4-8f91-9084c1f13f2d" ], "x-ms-correlation-request-id": [ - "39fb7c11-a991-4f1d-8b3d-1d890a6e5696" + "8927e415-4ff5-4ae4-8f91-9084c1f13f2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235352Z:39fb7c11-a991-4f1d-8b3d-1d890a6e5696" + "CENTRALUS:20150430T023700Z:8927e415-4ff5-4ae4-8f91-9084c1f13f2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2204,17 +2246,17 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:53:51 GMT" + "Thu, 30 Apr 2015 02:36:59 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNVFl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/7e2a56ef-1038-4480-a48c-5697c3e8eb3c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MDItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2UyYTU2ZWYtMTAzOC00NDgwLWE0OGMtNTY5N2MzZThlYjNjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNREl0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2237,16 +2279,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "31957" ], "x-ms-request-id": [ - "2a9dcd46-f326-4b34-aeb0-09fb683c9ac9" + "fda7327a-999f-4d11-ad7e-270840d429fa" ], "x-ms-correlation-request-id": [ - "2a9dcd46-f326-4b34-aeb0-09fb683c9ac9" + "fda7327a-999f-4d11-ad7e-270840d429fa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150425T235407Z:2a9dcd46-f326-4b34-aeb0-09fb683c9ac9" + "CENTRALUS:20150430T023716Z:fda7327a-999f-4d11-ad7e-270840d429fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2255,7 +2297,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Apr 2015 23:54:06 GMT" + "Thu, 30 Apr 2015 02:37:16 GMT" ] }, "StatusCode": 200 @@ -2263,12 +2305,12 @@ ], "Names": { "Test-VirtualNetworkGatewayCRUD": [ - "onesdk716", - "onesdk235", - "onesdk8004", - "onesdk725", - "onesdk4597", - "onesdk91" + "onesdk602", + "onesdk9783", + "onesdk4470", + "onesdk7163", + "onesdk2275", + "onesdk2370" ] }, "Variables": { From b63006b598e45fabf063f68c1212c7f09fd3b5fa Mon Sep 17 00:00:00 2001 From: Yadav Bhattarai Date: Wed, 20 May 2015 14:06:43 -0700 Subject: [PATCH 39/40] Changing namespace Azure->WindowsAzure for RDFE API specs --- setup/azurecmdfiles.wxi | 154 +++++++++++++++++- .../Collection/RemoteAppCollection.cs | 8 +- .../Commands.RemoteApp.Test.csproj | 7 +- .../Common/CollectionObjects.cs | 6 +- .../Common/MockObject.cs | 6 +- .../Common/OperationResult.cs | 6 +- .../Common/RemoteApp.cs | 6 +- .../Common/RemoteAppClient.cs | 7 +- .../Common/TemplateObjects.cs | 6 +- .../Common/UserObjects.cs | 6 +- .../Common/VNetObjects.cs | 6 +- .../Common/Workspace.cs | 6 +- .../RemoteAppOperationResult.cs | 6 +- .../RemoteProgram/RemoteAppProgram.cs | 6 +- .../RemoteAppSecurityPrincipals.cs | 6 +- .../Templates/RemoteAppTemplates.cs | 6 +- .../VNet/RemoteAppVNet.cs | 6 +- .../Workspace/RemoteAppWorkspace.cs | 6 +- .../Commands.RemoteApp.Test/packages.config | 2 +- .../Billing/GetAzureRemoteAppPlan.cs | 7 +- .../Collection/GetAzureRemoteAppCollection.cs | 8 +- ...GetAzureRemoteAppCollectionUsageDetails.cs | 9 +- ...GetAzureRemoteAppCollectionUsageSummary.cs | 10 +- .../Collection/GetAzureRemoteAppLocation.cs | 6 +- .../Collection/Model/Collections.cs | 9 +- .../Collection/NewAzureRemoteAppCollection.cs | 9 +- .../RemoveAzureRemoteAppCollection.cs | 6 +- .../Collection/SetAzureRemoteAppCollection.cs | 7 +- .../UpdateAzureRemoteAppCollection.cs | 7 +- .../Commands.RemoteApp.Designer.cs | 8 +- .../Commands.RemoteApp.csproj | 12 +- .../Commands.RemoteApp/Common/CmdRuntime.cs | 2 +- .../Commands.RemoteApp/Common/Exception.cs | 2 +- .../Common/LongRunningTask.cs | 4 +- .../Commands.RemoteApp/Common/RdsCmdlet.cs | 10 +- .../Common/RemoteAppRegEx.cs | 2 +- .../GetAzureRemoteAppOperationResult.cs | 6 +- .../RemoteProgram/GetAzureRemoteAppProgram.cs | 6 +- .../RemoteProgram/GetStartMenuProgram.cs | 6 +- .../PublishAzureRemoteAppProgram.cs | 7 +- .../UnpublishAzureRemoteAppProgram.cs | 8 +- .../AddAzureRemoteAppUser.cs | 4 +- .../GetAzureRemoteAppUser.cs | 6 +- .../Model/ConsentStatusModel.cs | 2 +- .../RemoveAzureRemoteAppUser.cs | 4 +- .../SecurityPrincipals/SecurityPrincipals.cs | 6 +- .../DisconnectAzureRemoteAppSession.cs | 6 +- .../Sessions/GetAzureRemoteAppSession.cs | 6 +- .../InvokeAzureRemoteAppSessionLogoff.cs | 8 +- .../SendAzureRemoteAppSessionMessage.cs | 6 +- .../GetAzureRemoteAppTemplateImage.cs | 6 +- .../NewAzureRemoteAppTemplateImage.cs | 11 +- .../RemoveAzureRemoteAppTemplateImage.cs | 7 +- .../RenameAzureRemoteAppTemplateImage.cs | 6 +- .../TemplateImage/TemplateImage.cs | 6 +- .../Vnet/GetAzureRemoteAppVnet.cs | 6 +- .../Vnet/GetAzureRemoteAppVpnDevice.cs | 6 +- .../GetAzureRemoteAppVpnDeviceConfigScript.cs | 6 +- .../Vnet/NewAzureRemoteAppVnet.cs | 5 +- .../Vnet/RemoveAzureAppVnet.cs | 6 +- .../Vnet/ResetAzureRemoteAppVpnSharedKey.cs | 8 +- .../Vnet/SetAzureRemoteAppVnet.cs | 5 +- .../WorkSpace/GetAzureRemoteAppWorkspace.cs | 6 +- .../WorkSpace/Models/WorkSpace.cs | 3 +- .../WorkSpace/SetAzureRemoteAppWorkspace.cs | 6 +- .../Commands.RemoteApp/packages.config | 2 +- .../Services/Commands.Utilities/Azure.psd1 | 2 +- 67 files changed, 346 insertions(+), 212 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 966c0760df4a..e1a98f246399 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -1475,6 +1475,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2794,9 +2898,6 @@ - - - @@ -2809,9 +2910,6 @@ - - - @@ -2839,6 +2937,9 @@ + + + @@ -2851,6 +2952,9 @@ + + + @@ -4164,6 +4268,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4584,12 +4722,10 @@ - - @@ -4599,10 +4735,12 @@ + + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Collection/RemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Collection/RemoteAppCollection.cs index dfc0b01654fa..be0b945d6272 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Collection/RemoteAppCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Collection/RemoteAppCollection.cs @@ -14,12 +14,12 @@ using Microsoft.WindowsAzure.Commands.ScenarioTest; -namespace Microsoft.Azure.Commands.RemoteApp.Test +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test { using Common; - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Cmdlets; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; using Moq; using Moq.Language.Flow; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj index e18b4bc6bc02..7deac15880c7 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj @@ -98,10 +98,6 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - False - ..\..\..\packages\Microsoft.Azure.Management.RemoteApp.1.0.9\lib\net40\Microsoft.Azure.Management.RemoteApp.dll - False ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll @@ -117,6 +113,9 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll + + ..\..\..\packages\Microsoft.WindowsAzure.Management.RemoteApp.2.0.0\lib\net40\Microsoft.WindowsAzure.Management.RemoteApp.dll + ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll False diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/CollectionObjects.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/CollectionObjects.cs index 5a8102771f14..78e4550429a8 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/CollectionObjects.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/CollectionObjects.cs @@ -12,10 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test.Common +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test.Common { - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Moq; using Moq.Language.Flow; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/MockObject.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/MockObject.cs index 34c9943d62ff..9e440f01eef9 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/MockObject.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/MockObject.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test.Common +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test.Common { using Microsoft.Azure; - using Microsoft.Azure.Management.RemoteApp.Cmdlets; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; using System; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/OperationResult.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/OperationResult.cs index c9bb126b2c91..b8c468d71dec 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/OperationResult.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/OperationResult.cs @@ -12,10 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test.Common +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test.Common { - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Moq; using Moq.Language.Flow; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteApp.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteApp.cs index c7a33ddeb5b8..6fde57d41e0f 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteApp.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteApp.cs @@ -12,10 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test.Common +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test.Common { - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Moq; using Moq.Language.Flow; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteAppClient.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteAppClient.cs index 37c0566ecbaf..f673bf1cc1e2 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteAppClient.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteAppClient.cs @@ -12,10 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test { - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Cmdlets; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets; using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; @@ -23,6 +23,7 @@ namespace Microsoft.Azure.Commands.RemoteApp.Test using System; using System.Threading; using System.Threading.Tasks; + using Microsoft.Azure; public class RemoteAppClientCredentials : SubscriptionCloudCredentials diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/TemplateObjects.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/TemplateObjects.cs index c32f187acaf6..8b0b276dc429 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/TemplateObjects.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/TemplateObjects.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test.Common +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test.Common { using Microsoft.Azure; - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Moq; using Moq.Language.Flow; using System; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/UserObjects.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/UserObjects.cs index b63782014d05..7bb76957b1f3 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/UserObjects.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/UserObjects.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test.Common +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test.Common { using LocalModels; - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Moq; using Moq.Language.Flow; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/VNetObjects.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/VNetObjects.cs index 2158e1116cd7..f4c2d7c0f761 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/VNetObjects.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/VNetObjects.cs @@ -12,10 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test.Common +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test.Common { - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Moq; using Moq.Language.Flow; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/Workspace.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/Workspace.cs index dcec9d33eae1..b3e50e51f410 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/Workspace.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/Workspace.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test.Common +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test.Common { using Microsoft.Azure; - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Moq; using Moq.Language.Flow; using System; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/OperationResult/RemoteAppOperationResult.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/OperationResult/RemoteAppOperationResult.cs index 634fed316667..1257395f4c1a 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/OperationResult/RemoteAppOperationResult.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/OperationResult/RemoteAppOperationResult.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test { using Common; - using Microsoft.Azure.Management.RemoteApp.Cmdlets; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using System; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/RemoteProgram/RemoteAppProgram.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/RemoteProgram/RemoteAppProgram.cs index db4b36a8c3e8..e4941b73be34 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/RemoteProgram/RemoteAppProgram.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/RemoteProgram/RemoteAppProgram.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test { using Common; - using Microsoft.Azure.Management.RemoteApp.Cmdlets; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using System; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/SecurityPrincipals/RemoteAppSecurityPrincipals.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/SecurityPrincipals/RemoteAppSecurityPrincipals.cs index f6026fdf7b56..069a541b0a57 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/SecurityPrincipals/RemoteAppSecurityPrincipals.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/SecurityPrincipals/RemoteAppSecurityPrincipals.cs @@ -12,12 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test { using LocalModels; using Common; - using Microsoft.Azure.Management.RemoteApp.Cmdlets; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Collections.Generic; using Xunit; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Templates/RemoteAppTemplates.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Templates/RemoteAppTemplates.cs index a16eb989702f..1a8819440a3b 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Templates/RemoteAppTemplates.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Templates/RemoteAppTemplates.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test { using Common; - using Microsoft.Azure.Management.RemoteApp.Cmdlets; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using System; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/VNet/RemoteAppVNet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/VNet/RemoteAppVNet.cs index 18ab41f6e93e..71f1d188515b 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/VNet/RemoteAppVNet.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/VNet/RemoteAppVNet.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test { using Common; - using Microsoft.Azure.Management.RemoteApp.Cmdlets; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using System; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Workspace/RemoteAppWorkspace.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Workspace/RemoteAppWorkspace.cs index 1e4f2795b596..e321357ce412 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Workspace/RemoteAppWorkspace.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Workspace/RemoteAppWorkspace.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.RemoteApp.Test +namespace Microsoft.WindowsAzure.Commands.RemoteApp.Test { using Common; - using Microsoft.Azure.Management.RemoteApp.Cmdlets; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using System; using System.Collections.Generic; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/packages.config b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/packages.config index 26033464ab25..7710487adb9f 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/packages.config +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/packages.config @@ -3,12 +3,12 @@ - + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Billing/GetAzureRemoteAppPlan.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Billing/GetAzureRemoteAppPlan.cs index 8fab7f0f2607..c1fba71b0df9 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Billing/GetAzureRemoteAppPlan.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Billing/GetAzureRemoteAppPlan.cs @@ -12,12 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Collections.Generic; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppPlan"), OutputType(typeof(BillingPlan))] public class GetAzureRemoteAppPlan : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollection.cs index 305eb4b199f4..c9db7de36cae 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollection.cs @@ -12,15 +12,15 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.RemoteApp; -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppCollection"), OutputType(typeof(LocalModels.Collection))] public class GetAzureRemoteAppCollection : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollectionUsageDetails.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollectionUsageDetails.cs index c3a4d46f01d5..33285957af89 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollectionUsageDetails.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollectionUsageDetails.cs @@ -12,17 +12,16 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.RemoteApp; -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; -using System.Collections.ObjectModel; using System.IO; using System.Management.Automation; using System.Net; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppCollectionUsageDetails"), OutputType(typeof(string))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollectionUsageSummary.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollectionUsageSummary.cs index 9c3bd1a1a570..29a09d0cbf71 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollectionUsageSummary.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppCollectionUsageSummary.cs @@ -12,15 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Commands.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; -using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppCollectionUsageSummary"), OutputType(typeof(BillingUsageSummary))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppLocation.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppLocation.cs index 6961d13414a3..22da59f51545 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppLocation.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/GetAzureRemoteAppLocation.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppLocation"), OutputType(typeof(Region))] public class GetAzureRemoteAppLocation : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/Model/Collections.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/Model/Collections.cs index 442588389cdf..c6ddadec6d0b 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/Model/Collections.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/Model/Collections.cs @@ -12,19 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; using System; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; namespace LocalModels { - public class Collection : Microsoft.Azure.Management.RemoteApp.Models.Collection + public class Collection : Microsoft.WindowsAzure.Management.RemoteApp.Models.Collection { public DateTime LastModifiedLocalTime { get; set; } - public Collection(Microsoft.Azure.Management.RemoteApp.Models.Collection col) + public Collection(Microsoft.WindowsAzure.Management.RemoteApp.Models.Collection col) { AdInfo = col.AdInfo; PlanName = col.PlanName; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs index d48619df835e..d0473cbac97a 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs @@ -12,15 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { - using Microsoft.Azure.Commands.RemoteApp; - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Commands.RemoteApp; using Microsoft.WindowsAzure.Management.Network; using Microsoft.WindowsAzure.Management.Network.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; - using System.Collections.Generic; using System.Management.Automation; using System.Net; using System.Threading.Tasks; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/RemoveAzureRemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/RemoveAzureRemoteAppCollection.cs index 6092a0ac2b76..c98e563f9127 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/RemoveAzureRemoteAppCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/RemoveAzureRemoteAppCollection.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Remove, "AzureRemoteAppCollection", SupportsShouldProcess = true), OutputType(typeof(TrackingResult))] public class RemoveAzureRemoteAppCollection : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/SetAzureRemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/SetAzureRemoteAppCollection.cs index e241b534e3f3..7a41248fae80 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/SetAzureRemoteAppCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/SetAzureRemoteAppCollection.cs @@ -12,13 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Management.Automation; using System.Net; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Set, "AzureRemoteAppCollection", DefaultParameterSetName = DescriptionOnly), OutputType(typeof(TrackingResult))] public class SetAzureRemoteAppCollection : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/UpdateAzureRemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/UpdateAzureRemoteAppCollection.cs index 3dec12cbe8d8..79be039f041e 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/UpdateAzureRemoteAppCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/UpdateAzureRemoteAppCollection.cs @@ -12,11 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsData.Update, "AzureRemoteAppCollection", SupportsShouldProcess = true), OutputType(typeof(TrackingResult))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs index ac6fc2950e66..a6f459a583d9 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs @@ -1,14 +1,14 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.36323 +// Runtime Version:4.0.30319.34014 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ -namespace Microsoft.Azure.Commands.RemoteApp { +namespace Microsoft.WindowsAzure.Commands.RemoteApp { using System; @@ -39,7 +39,7 @@ internal Commands_RemoteApp() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.RemoteApp.Commands.RemoteApp", typeof(Commands_RemoteApp).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.WindowsAzure.Commands.RemoteApp.Commands.RemoteApp", typeof(Commands_RemoteApp).Assembly); resourceMan = temp; } return resourceMan; @@ -293,7 +293,7 @@ internal static string RequestSuccessful { return ResourceManager.GetString("RequestSuccessful", resourceCulture); } } - + /// /// Looks up a localized string similar to Request timed out. To continue querying for the usage details operation status, please use Get-AzureRemoteAppOperationResult with tracking id: {0}. /// diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj index c732e904bd1a..ec65b082104a 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj @@ -8,8 +8,8 @@ Library ..\..\..\Package\$(Configuration)\ServiceManagement\Azure\RemoteApp\ Properties - Microsoft.Azure.Commands.RemoteApp - Microsoft.Azure.Commands.RemoteApp + Microsoft.WindowsAzure.Commands.RemoteApp + Microsoft.WindowsAzure.Commands.RemoteApp v4.5 512 ..\..\ @@ -69,10 +69,6 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - False - ..\..\..\packages\Microsoft.Azure.Management.RemoteApp.1.0.9\lib\net40\Microsoft.Azure.Management.RemoteApp.dll - ..\..\..\packages\Microsoft.Data.Edm.5.6.0\lib\net40\Microsoft.Data.Edm.dll @@ -112,6 +108,9 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.0\lib\net40\Microsoft.WindowsAzure.Management.Network.dll + + ..\..\..\packages\Microsoft.WindowsAzure.Management.RemoteApp.2.0.0\lib\net40\Microsoft.WindowsAzure.Management.RemoteApp.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll @@ -160,6 +159,7 @@ + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/CmdRuntime.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/CmdRuntime.cs index 9b698466fea7..f012be2a8ae3 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/CmdRuntime.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/CmdRuntime.cs @@ -15,7 +15,7 @@ using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { public abstract partial class RdsCmdlet : AzurePSCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/Exception.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/Exception.cs index 60cf88ada9b2..f0ad5ed33c2f 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/Exception.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/Exception.cs @@ -18,7 +18,7 @@ using System.Management.Automation; using System.Net; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { public enum ExceptionType diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/LongRunningTask.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/LongRunningTask.cs index 758a0505e0dc..25bc88bd9591 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/LongRunningTask.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/LongRunningTask.cs @@ -12,12 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Commands.RemoteApp; using System; using System.Management.Automation; using System.Threading; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { internal class LongRunningTask : Job where T : RdsCmdlet { diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/RdsCmdlet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/RdsCmdlet.cs index d8aec1c81935..320ec2c65964 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/RdsCmdlet.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/RdsCmdlet.cs @@ -13,18 +13,20 @@ // ---------------------------------------------------------------------------------- using Hyak.Common; -using Microsoft.Azure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Commands.RemoteApp; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; -using Microsoft.Azure.Management.RemoteApp.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Collections.ObjectModel; using System.Management.Automation; using System.Security.Principal; +using Microsoft.Azure; -namespace Microsoft.Azure.Management.RemoteApp.Models +namespace Microsoft.WindowsAzure.Management.RemoteApp.Models { public class TrackingResult @@ -38,7 +40,7 @@ public TrackingResult(OperationResultWithTrackingId operation) } } -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { public class EnabledFeatures { diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/RemoteAppRegEx.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/RemoteAppRegEx.cs index ab95c20a81da..d7b7422aedcb 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/RemoteAppRegEx.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Common/RemoteAppRegEx.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { public abstract partial class RdsCmdlet { diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/OperationalResult/GetAzureRemoteAppOperationResult.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/OperationalResult/GetAzureRemoteAppOperationResult.cs index 1f2b77c3971e..6a1a1d760afb 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/OperationalResult/GetAzureRemoteAppOperationResult.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/OperationalResult/GetAzureRemoteAppOperationResult.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppOperationResult"), OutputType(typeof(OperationResult))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/GetAzureRemoteAppProgram.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/GetAzureRemoteAppProgram.cs index 5bedf3ac0cd3..2ac91261443b 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/GetAzureRemoteAppProgram.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/GetAzureRemoteAppProgram.cs @@ -12,14 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppProgram", DefaultParameterSetName = FilterByName), OutputType(typeof(PublishedApplicationDetails))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/GetStartMenuProgram.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/GetStartMenuProgram.cs index b2fc41fd13dc..6ab9edbb11cb 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/GetStartMenuProgram.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/GetStartMenuProgram.cs @@ -12,15 +12,15 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppStartMenuProgram"), OutputType(typeof(StartMenuApplication))] public class GetStartMenuProgram : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/PublishAzureRemoteAppProgram.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/PublishAzureRemoteAppProgram.cs index 9e468676f558..a4ceb8319214 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/PublishAzureRemoteAppProgram.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/PublishAzureRemoteAppProgram.cs @@ -12,13 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.IO; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsData.Publish, "AzureRemoteAppProgram", DefaultParameterSetName = AppId), OutputType(typeof(PublishingOperationResult), typeof(Job))] public class PublishAzureRemoteAppProgram : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/UnpublishAzureRemoteAppProgram.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/UnpublishAzureRemoteAppProgram.cs index 9df9ee03f954..1c4a85f24872 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/UnpublishAzureRemoteAppProgram.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/RemoteProgram/UnpublishAzureRemoteAppProgram.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; using System.Collections.Generic; -using Microsoft.Azure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Commands.RemoteApp; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsData.Unpublish, "AzureRemoteAppProgram", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High), OutputType(typeof(PublishingOperationResult))] public class UnpublishAzureRemoteAppProgram : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/AddAzureRemoteAppUser.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/AddAzureRemoteAppUser.cs index aed431b0e3e0..33e3c540a997 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/AddAzureRemoteAppUser.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/AddAzureRemoteAppUser.cs @@ -12,10 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Add, "AzureRemoteAppUser"), OutputType(typeof(SecurityPrincipalOperationsResult))] public class AddAzureRemoteAppUser : SecurityPrincipals diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs index caeef4382a35..61a6ecf33dd8 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs @@ -13,14 +13,14 @@ // ---------------------------------------------------------------------------------- using LocalModels; -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppUser"), OutputType(typeof(ConsentStatusModel))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/Model/ConsentStatusModel.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/Model/ConsentStatusModel.cs index 076ce9214b84..d608998ecaee 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/Model/ConsentStatusModel.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/Model/ConsentStatusModel.cs @@ -13,7 +13,7 @@ // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; namespace LocalModels { diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/RemoveAzureRemoteAppUser.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/RemoveAzureRemoteAppUser.cs index c729d21a0dbd..df2e58699b24 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/RemoveAzureRemoteAppUser.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/RemoveAzureRemoteAppUser.cs @@ -12,10 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Remove, "AzureRemoteAppUser"), OutputType(typeof(SecurityPrincipalOperationsResult))] public class RemoveAzureRemoteAppUser : SecurityPrincipals diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/SecurityPrincipals.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/SecurityPrincipals.cs index 1ac1fa17fc59..aa70e3ec1ceb 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/SecurityPrincipals.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/SecurityPrincipals.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Collections.Generic; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { public class SecurityPrincipals : RdsCmdlet { diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/DisconnectAzureRemoteAppSession.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/DisconnectAzureRemoteAppSession.cs index 34fa50781159..00c7ef2f5113 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/DisconnectAzureRemoteAppSession.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/DisconnectAzureRemoteAppSession.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommunications.Disconnect, "AzureRemoteAppSession"), OutputType(typeof(string))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/GetAzureRemoteAppSession.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/GetAzureRemoteAppSession.cs index bc526a7284c2..8dd1ca9c4766 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/GetAzureRemoteAppSession.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/GetAzureRemoteAppSession.cs @@ -12,12 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Collections.Generic; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppSession"), OutputType(typeof(RemoteAppSession))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/InvokeAzureRemoteAppSessionLogoff.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/InvokeAzureRemoteAppSessionLogoff.cs index 52935d60ed8e..3e986dca3f77 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/InvokeAzureRemoteAppSessionLogoff.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/InvokeAzureRemoteAppSessionLogoff.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.RemoteApp; -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsLifecycle.Invoke, "AzureRemoteAppSessionLogoff", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High), OutputType(typeof(string))] public class InvokeAzureRemoteAppSessionLogoff : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/SendAzureRemoteAppSessionMessage.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/SendAzureRemoteAppSessionMessage.cs index 9bc5bc401aea..5dc5cbc1e250 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/SendAzureRemoteAppSessionMessage.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Sessions/SendAzureRemoteAppSessionMessage.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommunications.Send, "AzureRemoteAppSessionMessage"), OutputType(typeof(string))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/GetAzureRemoteAppTemplateImage.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/GetAzureRemoteAppTemplateImage.cs index 2a8859b6b385..d344befca733 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/GetAzureRemoteAppTemplateImage.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/GetAzureRemoteAppTemplateImage.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Collections.Generic; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppTemplateImage"), OutputType(typeof(TemplateImage))] public class GetAzureRemoteAppTemplateImage : GoldImage diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/NewAzureRemoteAppTemplateImage.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/NewAzureRemoteAppTemplateImage.cs index c8a2fc0899bd..83654b6a80b3 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/NewAzureRemoteAppTemplateImage.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/NewAzureRemoteAppTemplateImage.cs @@ -12,25 +12,22 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { - using Microsoft.Azure.Management.RemoteApp; - using Microsoft.Azure.Management.RemoteApp.Models; + using Microsoft.WindowsAzure.Commands.RemoteApp; using Microsoft.WindowsAzure.Management.Compute; using Microsoft.WindowsAzure.Management.Compute.Models; + using Microsoft.WindowsAzure.Management.RemoteApp; + using Microsoft.WindowsAzure.Management.RemoteApp.Models; using Microsoft.WindowsAzure.Management.Storage; using Microsoft.WindowsAzure.Management.Storage.Models; using Microsoft.WindowsAzure.Storage.Auth; using Microsoft.WindowsAzure.Storage.Blob; using System; using System.Collections.ObjectModel; - using System.Collections.Generic; - using System.Diagnostics; using System.IO; using System.Management.Automation; - using System.Management.Automation.Runspaces; using System.Threading; - using Microsoft.Azure.Commands.RemoteApp; [Cmdlet(VerbsCommon.New, "AzureRemoteAppTemplateImage", DefaultParameterSetName = UploadLocalVhd), OutputType(typeof(TemplateImageResult))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/RemoveAzureRemoteAppTemplateImage.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/RemoveAzureRemoteAppTemplateImage.cs index ea5c25b6926d..bf3538eb4f5d 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/RemoveAzureRemoteAppTemplateImage.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/RemoveAzureRemoteAppTemplateImage.cs @@ -12,11 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.Azure; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Remove, "AzureRemoteAppTemplateImage", SupportsShouldProcess = true)] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/RenameAzureRemoteAppTemplateImage.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/RenameAzureRemoteAppTemplateImage.cs index ab213fe51303..f568d0747862 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/RenameAzureRemoteAppTemplateImage.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/RenameAzureRemoteAppTemplateImage.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Rename, "AzureRemoteAppTemplateImage"), OutputType(typeof(TemplateImage))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/TemplateImage.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/TemplateImage.cs index 1408352842e8..e4897070b093 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/TemplateImage.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/TemplateImage.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Collections.Generic; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { public class TemplateImageComparer : IComparer diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVnet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVnet.cs index 31dc400b45c9..adc01ec98493 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVnet.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVnet.cs @@ -12,12 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppVNet"), OutputType(typeof(VNetResult))] public class GetAzureRemoteAppVNet : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDevice.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDevice.cs index 84a9095a7235..b953d2b2f7c1 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDevice.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDevice.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppVpnDevice"), OutputType(typeof(Vendor))] public class GetAzureRemoteAppVpnDevice : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDeviceConfigScript.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDeviceConfigScript.cs index 0f2f46ca89cc..d4dba54d3ee9 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDeviceConfigScript.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDeviceConfigScript.cs @@ -12,12 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppVpnDeviceConfigScript"), OutputType(typeof(String))] public class GetAzureRemoteAppVpnDeviceConfigScript : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/NewAzureRemoteAppVnet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/NewAzureRemoteAppVnet.cs index f6b2c9531769..543ab0663af3 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/NewAzureRemoteAppVnet.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/NewAzureRemoteAppVnet.cs @@ -12,11 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Collections.Generic; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.New, "AzureRemoteAppVNet"), OutputType(typeof(TrackingResult))] public class NewAzureRemoteAppVNet : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/RemoveAzureAppVnet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/RemoveAzureAppVnet.cs index 9bbe0f56982a..b0c2127e1d98 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/RemoveAzureAppVnet.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/RemoveAzureAppVnet.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Remove, "AzureRemoteAppVNet"), OutputType(typeof(TrackingResult))] public class RemoveAzureRemoteAppVNet : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/ResetAzureRemoteAppVpnSharedKey.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/ResetAzureRemoteAppVpnSharedKey.cs index f8f3b3ec2baf..95b46336382d 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/ResetAzureRemoteAppVpnSharedKey.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/ResetAzureRemoteAppVpnSharedKey.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.RemoteApp; -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Commands.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Reset, "AzureRemoteAppVpnSharedKey", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High), OutputType(typeof(VNet))] diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/SetAzureRemoteAppVnet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/SetAzureRemoteAppVnet.cs index 68434c4f2743..abf7fadb0f0b 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/SetAzureRemoteAppVnet.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/SetAzureRemoteAppVnet.cs @@ -12,11 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Collections.Generic; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Set, "AzureRemoteAppVNet"), OutputType(typeof(TrackingResult))] public class SetAzureRemoteAppVNet : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/GetAzureRemoteAppWorkspace.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/GetAzureRemoteAppWorkspace.cs index 6a0d856bb703..bf01c79c9f0e 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/GetAzureRemoteAppWorkspace.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/GetAzureRemoteAppWorkspace.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Get, "AzureRemoteAppWorkspace"), OutputType(typeof(Workspace))] public class GetAzureRemoteAppWorkspace : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/Models/WorkSpace.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/Models/WorkSpace.cs index e0438d77c899..b5e28b54c3a8 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/Models/WorkSpace.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/Models/WorkSpace.cs @@ -12,9 +12,8 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Collections.Generic; -namespace Microsoft.Azure.Management.RemoteApp.Models +namespace Microsoft.WindowsAzure.Management.RemoteApp.Models { public class Workspace { diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/SetAzureRemoteAppWorkspace.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/SetAzureRemoteAppWorkspace.cs index b65ade21a136..8d806b58e115 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/SetAzureRemoteAppWorkspace.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/WorkSpace/SetAzureRemoteAppWorkspace.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.RemoteApp; -using Microsoft.Azure.Management.RemoteApp.Models; +using Microsoft.WindowsAzure.Management.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System.Management.Automation; -namespace Microsoft.Azure.Management.RemoteApp.Cmdlets +namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { [Cmdlet(VerbsCommon.Set, "AzureRemoteAppWorkspace")] public class SetAzureRemoteAppWorkspace : RdsCmdlet diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config index 12ddfcca7d35..8b6f55a359d8 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config @@ -4,7 +4,6 @@ - @@ -17,6 +16,7 @@ + diff --git a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 index 443d6c198b60..4d589dccab84 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 +++ b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 @@ -88,7 +88,7 @@ NestedModules = '.\Services\Microsoft.WindowsAzure.Commands.dll', '.\HDInsight\Microsoft.WindowsAzure.Commands.HDInsight.dll', '.\Networking\Microsoft.WindowsAzure.Commands.ServiceManagement.Network.dll', '.\StorSimple\Microsoft.WindowsAzure.Commands.StorSimple.dll', - '.\RemoteApp\Microsoft.Azure.Commands.RemoteApp.dll', + '.\RemoteApp\Microsoft.WindowsAzure.Commands.RemoteApp.dll', '.\RecoveryServices\Microsoft.Azure.Commands.RecoveryServices.dll' # Functions to export from this module From cdf87746eb853eb14466edc4fd0bf89228b8c31a Mon Sep 17 00:00:00 2001 From: Yadav Bhattarai Date: Wed, 20 May 2015 15:08:34 -0700 Subject: [PATCH 40/40] Removing the file newly added but not needed from the project --- .../RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj index ec65b082104a..60f6bb915dc4 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj @@ -159,7 +159,6 @@ -